-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 890 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 890 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
{
"name": "figma-export",
"version": "1.0.0",
"description": "CLI to select Figma files from a project and download .fig exports",
"type": "module",
"main": "dist/index.js",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"export": "npm run build && node dist/index.js",
"prepare": "npx playwright install chromium"
},
"keywords": [
"figma",
"cli",
"export"
],
"author": "",
"license": "ISC",
"dependencies": {
"picocolors": "^1.0.0",
"@inquirer/checkbox": "^5.0.3",
"@inquirer/select": "^2.3.2",
"dotenv": "^17.2.3",
"playwright": "^1.57.0"
},
"devDependencies": {
"@types/node": "^25.0.2",
"rimraf": "^6.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}