-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.14 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.14 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
{
"name": "site-studio",
"version": "0.1.0",
"description": "AI-powered static site builder with community features",
"private": true,
"type": "module",
"workspaces": [
"packages/frontend"
],
"scripts": {
"postinstall": "npm --prefix packages/app install",
"build": "npm run build --workspaces --if-present && npm --prefix packages/app run build",
"dev:app": "npm --prefix packages/app run dev",
"dev:frontend": "npm run dev --workspace=packages/frontend",
"dev": "concurrently \"npm run dev:app\" \"npm run dev:frontend\"",
"chat:debug": "node ./scripts/project-chat-debug.mjs",
"trace": "node ./scripts/project-observability.mjs",
"clean": "rm -rf packages/*/dist packages/*/node_modules node_modules"
},
"keywords": [
"claude",
"ai",
"agent",
"static-site",
"site-builder",
"community"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@tailwindcss/vite": "^4.1.16",
"@types/node": "^20.19.24",
"@vitest/ui": "^4.0.7",
"concurrently": "^8.2.2",
"tailwindcss": "^4.1.16",
"typescript": "^5.5.0",
"vitest": "^4.0.7",
"ws": "^8.20.0"
}
}