-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.76 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.76 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@sandlada/material-theme-cli",
"version": "1.0.0-20260525.a",
"description": "Material Design CLI for generating theme tokens and serialized color outputs from a source color.",
"main": "dist/index.js",
"bin": {
"material-theme-cli": "./index.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"index.js",
"src/",
"README.md",
"LICENSE"
],
"scripts": {
"prestart": "npm run build",
"start": "node index.js",
"prepack": "npm run build",
"build": "rolldown -c --clean-dir",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run"
},
"author": "kai-orion",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sandlada/material-theme-cli.git"
},
"bugs": {
"url": "https://github.com/sandlada/material-theme-cli/issues"
},
"homepage": "https://github.com/sandlada/material-theme-cli#readme",
"type": "module",
"keywords": [
"cli",
"css-generator",
"material-token-template",
"material-design",
"material-theme",
"material-color",
"material-palette",
"material-you"
],
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"commander": "^14.0.3"
},
"devDependencies": {
"@material/material-color-utilities": "^0.4.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.9.1",
"chalk": "^5.6.2",
"csv-parse": "^6.2.1",
"fast-xml-parser": "^5.8.0",
"js-yaml": "^4.1.1",
"rolldown": "^1.0.2",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
}
}