forked from silships/figma-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 955 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 955 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
{
"name": "figma-ds-cli",
"version": "1.1.1",
"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",
"fig-start": "bin/fig-start"
},
"files": [
"src",
"bin"
],
"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": {
"setup-alias": "bash bin/setup-alias.sh",
"test": "node --test tests/*.test.js"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"ora": "^8.0.0",
"ws": "^8.16.0"
}
}