-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 738 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 738 Bytes
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
{
"name": "spectral-design",
"version": "0.1.0",
"description": "Reverse-engineer any website's design DNA — tokens, components, layouts, and sitemap",
"type": "module",
"main": "dist/index.js",
"bin": {
"spectral": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"lint": "tsc --noEmit"
},
"keywords": ["design-system", "reverse-engineering", "css", "tokens", "components", "claude-code"],
"license": "MIT",
"dependencies": {
"playwright": "^1.50.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"css-tree": "^3.0.1",
"ora": "^8.1.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
}
}