-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "@serendie/figma-utils",
"description": "Import/Export Figma Variables to JSON (W3C Design Tokens spec) with Figma REST API",
"version": "0.0.3",
"license": "MIT",
"type": "module",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"build": "npm run build:cli",
"build:cli": "tsup src/cli/*.ts --format esm --platform node --shims --clean",
"test": "vitest",
"sync-json-to-figma": "tsx src/cli/sync-to-figma.ts",
"ci:sync-json-to-figma": "tsx src/cli/sync-to-figma.ts --silent",
"release": "release-it --config ../.release-it.json",
"sync-figma-to-json": "tsx src/cli/sync-from-figma.ts",
"test:sync-figma-to-json": "vitest src/figma_to_json"
},
"devDependencies": {
"@figma/rest-api-spec": "^0.16.0",
"@types/node": "^20.11.25",
"release-it": "^17.11.0",
"vitest": "^1.3.1"
},
"dependencies": {
"axios": "^1.6.7",
"chalk": "^5.4.1",
"commander": "^13.0.0",
"deepmerge": "^4.3.1",
"dotenv": "^16.4.5",
"tsup": "^8.3.5",
"tsx": "^4.7.2",
"typescript": "^5.5.3"
},
"bin": {
"sync-to-figma": "dist/sync-to-figma.js",
"sync-from-figma": "dist/sync-from-figma.js"
},
"files": [
"dist"
]
}