-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.13 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.13 KB
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
{
"name": "figma-icons-cli",
"version": "0.0.7",
"description": "A command-line interface for managing icons. It can do many things, such as convert icons from figma/iconfont to svg files/components, generate iconfont file from figma icons, etc.",
"keywords": [
"icon",
"icon-cli",
"figma",
"iconfont",
"svg",
"components"
],
"author": "xigua",
"license": "MIT",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"files": [
"bin",
"dist",
"templates"
],
"bin": {
"icons": "./bin/cli.js"
},
"scripts": {
"build": "tsc -d",
"prepublishOnly": "npm run build",
"test": "jest",
"test-w": "jest --watch",
"coverage": "jest --coverage true"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"case": "^1.6.3",
"chalk": "^4.1.2",
"commander": "^9.4.0",
"esm": "^3.2.25",
"figma-js": "^1.15.0",
"fs-extra": "^10.1.0",
"got": "^11.8.5",
"inquirer": "^8.2.4",
"node-fetch": "2",
"ora": "^5.4.1",
"p-queue": "^5.0.0",
"path": "^0.12.7"
},
"devDependencies": {
"jest": "^29.1.1",
"typescript": "^4.7.4"
}
}