-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1 KB
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
{
"name": "@design-system-pro/token-tinker",
"license": "MIT license",
"version": "0.1.0-next.5",
"type": "module",
"description": "GitHub Action to transform Design Tokens from Tokens Studio using Style Dictionary",
"main": "dist/main.js",
"scripts": {
"start": "ncc run src/main.ts",
"test": "act -W '.github/workflows/test.yml' --container-architecture linux/arm64 --artifact-server-path /tmp/artifacts",
"build": "tsc && ncc build src/main.ts --minify --source-map"
},
"keywords": [
"github-action",
"design-tokens",
"style-dictionary",
"tokens-studio",
"css"
],
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^5.1.1",
"@tokens-studio/sd-transforms": "^1.2.9"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@types/node": "^18.15.11",
"@vercel/ncc": "^0.38.3",
"style-dictionary": "^4.2.0",
"typescript": "^5.0.3"
},
"engines": {
"node": "^20"
}
}