-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.88 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.88 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
{
"name": "create-opc-wiki",
"version": "1.0.1",
"description": "Scaffold a personal LLM wiki (Karpathy pattern). MCP-ready, multi-agent, publishable. Zero-prompt install for IM agents (OpenClaw, Hermes, Codex, Claude Code).",
"keywords": [
"llm-wiki",
"karpathy",
"personal-knowledge-base",
"second-brain",
"obsidian-vault",
"obsidian",
"mcp",
"mcp-server",
"claude-code",
"codex",
"cursor",
"openclaw",
"hermes-agent",
"agent-tooling",
"knowledge-management",
"rag-alternative",
"compounding-knowledge",
"opc",
"one-person-company"
],
"type": "module",
"bin": {
"create-opc-wiki": "./dist/cli.js"
},
"files": [
"dist",
"templates",
"README.md",
"LICENSE",
"INSPIRATION.md",
"STABILITY.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"SECURITY.md",
"llms.txt",
"agents.json",
"docs/INSTALL-FOR-AGENTS.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node ./dist/cli.js",
"clean": "rm -rf dist",
"test:smoke": "npm run build && node ./scripts/smoke-scaffold.mjs",
"test:e2e": "npm run build && node ./scripts/e2e.mjs",
"test": "npm run test:smoke && npm run test:e2e",
"prepublishOnly": "npm run clean && npm run build"
},
"engines": {
"node": ">=20"
},
"license": "MIT",
"author": "MackDing",
"homepage": "https://github.com/MackDing/create-opc-wiki",
"repository": {
"type": "git",
"url": "git+https://github.com/MackDing/create-opc-wiki.git"
},
"bugs": {
"url": "https://github.com/MackDing/create-opc-wiki/issues"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"chalk": "^5.6.2",
"mustache": "^4.2.0",
"open": "^10.2.0"
},
"devDependencies": {
"@types/mustache": "^4.2.6",
"@types/node": "^22.10.5",
"tsup": "^8.5.0",
"typescript": "^5.7.3"
}
}