-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1009 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 1009 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "figma-ds-cli",
"version": "1.2.0",
"description": "CLI for managing Figma design systems. Create variables, components, and more. No API key required.",
"author": "Sil Bormüller",
"license": "MIT",
"type": "module",
"bin": {
"figma-ds-cli": "src/index.js",
"figma-cli": "src/index.js"
},
"files": [
"src",
"plugin"
],
"keywords": [
"figma",
"design-system",
"design-tokens",
"cli",
"variables"
],
"repository": {
"type": "git",
"url": "git+https://github.com/silships/figma-cli.git"
},
"homepage": "https://intodesignsystems.com",
"bugs": {
"url": "https://github.com/silships/figma-cli/issues"
},
"scripts": {
"test": "node --test tests/*.test.js"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"figma-use": "^0.13.3",
"jpeg-js": "^0.4.4",
"ora": "^8.0.0",
"pngjs": "^7.0.0",
"ws": "^8.16.0",
"yaml": "^2.9.0"
}
}