-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.3 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@colthands/figma-build",
"version": "0.0.2-0",
"description": "figma-build is a script that fetches your figma theme styles and outputs them in various formats",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ColtHands/figma-build.git",
"directory": "@colthands/figma-build"
},
"bugs": {
"url": "https://github.com/ColtHands/figma-build.git"
},
"author": "Aleksei <colthands@protonmail.com>, Olga <twertyolga@gmail.com>",
"contributors": [
{
"name": "Aleksei Karpenko",
"email": "colthands@protonmail.com",
"url": "https://colthands.dev/"
},
{
"name": "Olga Buinitskaya",
"email": "twertyolga@gmail.com"
}
],
"keywords": [
"figma",
"figma-build"
],
"license": "MPL-2.0",
"bin": {
"figma-build": "./bin/index.js"
},
"engines": {
"pnpm": ">=7.13.4",
"node": ">=18.15.0"
},
"dependencies": {
"axios": "^1.3.4",
"yargs": "^17.7.1"
},
"devDependencies": {
"typescript": "^5.0.3",
"ts-node": "^10.9.1",
"@types/node": "^18.15.11",
"@types/yargs": "^17.0.24"
},
"scripts": {
"dev": "ts-node -T src/index.ts theme --outputPath /examples/react-example/src --outputFormat commonjs --filename nodeStyles.js",
"build": "tsc -b"
}
}