-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 730 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 730 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
30
31
{
"name": "clide-handbook",
"version": "1.0.0",
"description": "The Clide Handbook - Autonomous Development with Claude Code",
"main": "index.js",
"scripts": {
"build": "node scripts/build-html-book.js",
"build:pdf": "node scripts/build-pdf-book.js",
"serve": "npx http-server dist -p 8080",
"dev": "npm run build && npm run serve"
},
"keywords": [
"claude-code",
"autonomous-development",
"ai",
"mcp",
"typescript",
"react"
],
"author": "Claude Code Community",
"license": "MIT",
"dependencies": {
"marked": "^11.1.1",
"highlight.js": "^11.9.0",
"jsdom": "^23.0.1"
},
"devDependencies": {
"http-server": "^14.1.1",
"puppeteer": "^21.6.1"
}
}