-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 910 Bytes
/
package.json
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
{
"name": "figma-puppeteer-run-command",
"version": "1.0.0",
"main": "src/index.ts",
"private": true,
"scripts": {
"start": "nodemon --quiet",
"test": "printf \"%s\" $(cat ./.env); ts-node src/index.ts --debug",
"build": "tsc -t es6 --module node16 --outDir 'dist/' ./src/index.ts",
"build:bin": "./build-binary.sh",
"ws:test": "ts-node src/index.ts -t 1",
"print:env": "cat ./.env"
},
"bin": {
"figma-scrape-text": "dist/index.js"
},
"author": "Alexander Zizzo <[email protected]>",
"dependencies": {
"argparse": "^2.0.1",
"dotenv": "^16.0.3",
"figma-api": "^1.10.1",
"jest-environment-node": "^29.1.2",
"node-fetch": "^3.2.10",
"puppeteer": "^18.2.1"
},
"devDependencies": {
"@types/argparse": "^2.0.10",
"@types/figma": "^1.0.4",
"@types/node-fetch": "^2.6.2",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1"
}
}