-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
35 lines (35 loc) · 911 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
{
"name": "@mxenabled/design-tokens",
"version": "1.0.3",
"description": "Design Tokens",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=12.13.1",
"npm": ">=6.14.0"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/mxenabled/mx-design-tokens"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf ./dist && tsc",
"build:docs": "cd ./bin && node docs.js",
"build:json": "cd ./bin && node json.js",
"build:scss": "cd ./bin && node scss.js",
"build:css": "cd ./bin && node css.js",
"build:all": "npm run build && npm run build:docs && npm run build:json && npm run build:scss && npm run build:css"
},
"author": "MX",
"license": "ISC",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"typescript": "^5.1.6"
}
}