forked from anymorph-ai/Claudable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.06 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
74
75
76
77
{
"name": "claudable",
"version": "2.0.0",
"description": "AI-Powered Web App Builder - Build apps with natural language using Claude Code, Cursor, and more",
"private": true,
"scripts": {
"dev": "node scripts/run-web.js",
"dev:web": "node scripts/run-web.js",
"ensure:env": "node scripts/setup-env.js",
"test": "vitest run",
"test:watch": "vitest",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"type-check": "tsc --noEmit",
"prisma:generate": "prisma generate",
"prisma:push": "prisma db push",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio",
"prisma:reset": "prisma migrate reset",
"setup": "npm install && prisma generate && prisma db push",
"check-cli": "node scripts/check-claude-cli.js",
"postinstall": "npm run ensure:env"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.204",
"@prisma/adapter-better-sqlite3": "^7.8.0",
"@prisma/client": "^7.8.0",
"fflate": "^0.8.3",
"framer-motion": "^12.42.2",
"highlight.js": "^11.10.0",
"lucide-react": "^1.23.0",
"next": "^16.2.10",
"next-auth": "^5.0.0-beta.31",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-markdown": "^10.0.0",
"sharp": "^0.34.5",
"ws": "^8.18.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.2",
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/ws": "^8.18.1",
"dotenv": "^17.4.2",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.10",
"postcss": "^8.4.49",
"prisma": "^7.8.0",
"tailwindcss": "^4.3.2",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"keywords": [
"ai",
"claude",
"cursor",
"app-builder",
"nextjs",
"code-generation",
"no-code",
"low-code"
],
"author": "Claudable Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/holoduke/Claudable.git"
}
}