-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 925 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 925 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
32
33
34
35
36
37
38
39
40
{
"name": "claude-second-brain",
"version": "1.1.0",
"description": "The fastest way to start your personal knowledge base powered by Obsidian, Claude Code, qmd, and GitHub.",
"type": "module",
"bin": {
"claude-second-brain": "./bin/create.js",
"csb": "./bin/create.js"
},
"scripts": {
"docs:dev": "vocs dev",
"docs:build": "vocs build",
"docs:preview": "vocs preview"
},
"files": [
"bin/",
"template/",
"image.png"
],
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@10.8.0",
"dependencies": {
"@clack/prompts": "^1.2.0",
"picocolors": "^1.1.1"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jessepinkman9900/claude-second-brain"
},
"devDependencies": {
"@types/react": "^19.2.14",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"typescript": "^6.0.2",
"vocs": "1.4.1"
}
}