-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.01 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.01 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
37
38
{
"name": "transform",
"version": "0.0.0",
"description": "GitHub Action to transform design tokens using Terrazzo",
"main": "dist/index.cjs",
"scripts": {
"start": "ncc run src/index.ts",
"build": "tsc && ncc build src/index.ts --minify --source-map"
},
"keywords": [
"github-action",
"design-tokens",
"terrazzo"
],
"license": "AGPL-3.0",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^5.1.1",
"@terrazzo/cli": "^0.0.19",
"@terrazzo/parser": "^0.0.19",
"@terrazzo/plugin-css": "^0.0.11"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/node": "^18.15.11",
"@vercel/ncc": "^0.36.1",
"semantic-release": "^24.1.2",
"typescript": "^5.0.3"
},
"packageManager": "pnpm@9.5.0",
"engines": {
"node": "^20"
}
}