-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 900 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 900 Bytes
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
{
"name": "figma-variable-import",
"version": "1.0.0",
"type": "module",
"description": "This script updates the variables in a Figma file from the Firefox Design System",
"scripts": {
"start": "tsx ./src/index.ts",
"copy": "copyfiles -u 1 -e \"**/*.ts\" \"src/**/*\" dist",
"build": "tsc && npm run copy",
"lint": "eslint src/",
"prettier": "prettier --write --check 'src/**/*.*'"
},
"license": "MPL-2.0",
"devDependencies": {
"@eslint/js": "^9.25.1",
"@figma/rest-api-spec": "^0.29.0",
"@types/culori": "^2.1.1",
"@types/node": "^22.15.2",
"copyfiles": "^2.4.1",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.31.0"
},
"dependencies": {
"culori": "^4.0.1",
"yaml": "^2.7.1"
}
}