-
Notifications
You must be signed in to change notification settings - Fork 583
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 3.21 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 3.21 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"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,
"main": "index.js",
"scripts": {
"dev": "node scripts/run-web.js",
"dev:web": "node scripts/run-web.js",
"dev:desktop": "node scripts/run-desktop.js",
"dev:electron": "npm run dev:desktop",
"ensure:env": "node scripts/setup-env.js",
"build": "next build",
"build:desktop": "npm run build && electron-builder",
"package:mac": "npm run build && electron-builder --mac",
"package:win": "npm run build && electron-builder --win",
"package:linux": "npm run build && electron-builder --linux",
"start": "next start",
"lint": "next lint",
"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.2.68",
"@prisma/client": "^6.1.0",
"dotenv": "^16.4.5",
"framer-motion": "^11.11.17",
"highlight.js": "^11.10.0",
"lucide-react": "^0.460.0",
"next": "^15.5.6",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-icons": "^5.5.0",
"react-markdown": "^10.0.0",
"ws": "^8.18.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/ws": "^8.18.1",
"autoprefixer": "^10.4.20",
"electron": "^39.0.0",
"electron-builder": "^25.1.6",
"eslint": "^9.17.0",
"eslint-config-next": "15.1.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prisma": "^6.1.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
},
"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/yourusername/claudable.git"
},
"build": {
"appId": "com.claudable.desktop",
"productName": "Claudable",
"files": [
"index.js",
"electron/**/*",
".next/standalone/**/*",
".next/static/**/*",
"public/**/*",
"package.json"
],
"extraResources": [
{
"from": ".next/static",
"to": ".next/static"
},
{
"from": "public",
"to": "public"
}
],
"asar": true,
"directories": {
"buildResources": "resources",
"output": "dist"
},
"mac": {
"target": [
"dmg",
"zip"
],
"category": "public.app-category.developer-tools"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"linux": {
"target": [
"AppImage"
],
"category": "Development"
}
}
}