-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1022 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
34
35
36
37
38
39
40
{
"name": "@ubie/design-tokens",
"version": "0.3.2",
"description": "Ubie Design Tokens",
"style": "dist/tokens.css",
"main": "dist/tokens.js",
"typings": "dist/tokens.d.ts",
"files": [
"dist/**"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:tokens": "style-dictionary build",
"build:figma": "node --env-file=.env ./scripts/figma.js",
"fix": "prettier -w scripts",
"prepublishOnly": "npm run build:tokens"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ubie-oss/design-tokens.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ubie-oss/design-tokens/issues"
},
"homepage": "https://github.com/ubie-oss/design-tokens#readme",
"devDependencies": {
"@ubie/prettier-config": "^0.1.0",
"node-fetch": "^3.2.0",
"prettier": "^2.6.2",
"style-dictionary": "^3.7.0"
},
"publishConfig": {
"access": "public"
},
"volta": {
"node": "16.14.2"
}
}