-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 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
68
69
70
71
72
73
{
"name": "@icydotdev/lumen",
"version": "0.1.6",
"description": "AI-powered design system workbench for React — extract, organise, test, and maintain your design system from existing code, live.",
"type": "module",
"bin": {
"lumen": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"dev:server": "tsx watch src/cli.ts",
"dev:client": "vite",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"build:client": "vite build",
"build:server": "tsc -p tsconfig.server.json",
"build": "npm run build:client && npm run build:server",
"prepublishOnly": "npm run build"
},
"dependencies": {
"chokidar": "^3.6.0",
"express": "^5.1.0",
"fast-glob": "^3.3.3",
"open": "^10.1.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/ws": "^8.5.0",
"@vitejs/plugin-react": "^4.3.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^5.5.0",
"autoprefixer": "^10.4.0",
"concurrently": "^9.1.0",
"lucide-react": "^0.468.0",
"postcss": "^8.4.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^3.4.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"zustand": "^5.0.0"
},
"author": "Sam Kavanagh",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/icydotdev/lumen"
},
"keywords": [
"design-system",
"react",
"ai",
"ai-agent",
"claude",
"tailwind",
"storybook",
"components",
"tokens",
"a11y",
"cli",
"developer-tools"
]
}