forked from betagouv/figpot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.76 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "figpot",
"version": "0.0.0",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/sneko/figpot.git"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"type": "module",
"module": "./dist/index.js",
"bin": {
"figpot": "./dist/cli/index.js"
},
"types": "./dist/index.d.ts",
"scripts": {
"postinstall": "patch-package",
"setup": "npm run client:figma:generate && npm run client:penpot:generate && npm run cli deps",
"build": "tsup",
"dev": "tsup --watch",
"cli": "dotenv-run-script .env.test -- cli:unsecure",
"cli:unsecure": "tsx src/cli/index.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "npm run lint:es && npm run lint:ts",
"lint:es": "TIMING=1 eslint --ext .js,.jsx,.ts,.tsx,.mdx .",
"lint:ts": "tsc --noEmit --incremental false",
"test:unit": "npm run jest --- --ci --passWithNoTests",
"test:unit:watch": "npm run jest --- --watch",
"client:figma:generate": "openapi-ts -i https://raw.githubusercontent.com/figma/rest-api-spec/main/openapi/openapi.yaml -o src/clients/figma",
"client:penpot:generate": "openapi-ts -i https://design.penpot.app/api/openapi.json -o src/clients/penpot",
"clean": "rm -rf dist && rm -rf node_modules",
"cm": "cz",
"playwright": "playwright",
"jest": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
"semantic-release": "semantic-release"
},
"dependencies": {
"@commander-js/extra-typings": "^11.1.0",
"@inquirer/prompts": "^3.3.0",
"@types/graphlib": "^2.1.12",
"@types/set-cookie-parser": "^2.4.10",
"chalk": "^5.3.0",
"change-case": "^5.4.4",
"content-type": "^1.0.5",
"execa": "^9.3.0",
"glob": "^10.4.2",
"graphlib": "^2.1.8",
"human-filetypes": "^1.1.3",
"image-size": "^1.1.1",
"iso8601-duration": "^2.1.2",
"json-stream-stringify": "^3.1.4",
"lru-cache": "^10.2.2",
"mathjs": "^13.0.0",
"microdiff": "^1.3.2",
"patch-package": "^8.0.0",
"playwright": "^1.45.3",
"romans": "^2.0.16",
"set-cookie-parser": "^2.6.0",
"simple-git": "^3.25.0",
"slugify": "^1.6.6",
"stream-chain": "^2.2.5",
"stream-json": "^1.8.0",
"svg-path-parser": "^1.1.0",
"ts-custom-error": "^3.3.1",
"ts-graphviz": "^1.8.2",
"uuid": "^10.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@figma/rest-api-spec": "^0.15.0",
"@hey-api/openapi-ts": "^0.46.3",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/chalk": "^2.2.0",
"@types/content-type": "^1.1.8",
"@types/jest": "^29.4.0",
"@types/node": "^20.9.0",
"@types/stream-json": "^1.7.7",
"@types/svg-path-parser": "^1.1.6",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.3",
"dotenv-run-script": "^0.2.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.3.1",
"jest-environment-node": "^29.4.1",
"jest-environment-node-single-context": "^29.4.0",
"semantic-release": "24.0.0",
"testcontainers": "^9.6.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsup": "^8.1.0",
"tsx": "^4.7.0",
"typescript": "^5.2.2"
},
"packageManager": "npm@10.4.0",
"engines": {
"node": ">=18.16.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"original-main"
]
}
}