forked from atomicstrata/llm-wiki-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.55 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
{
"name": "llm-wiki-compiler",
"version": "1.1.0",
"description": "A knowledge compiler CLI — raw sources in, interlinked wiki out",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"llmwiki": "dist/cli.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"dev:view": "node scripts/dev-viewer.mjs",
"release:check-docs": "node scripts/check-release-docs.mjs",
"release:check-docs:current": "node scripts/check-release-docs.mjs --current-version",
"test": "vitest run",
"test:watch": "vitest",
"fallow:ci": "bash scripts/fallow-ci.sh",
"prepublishOnly": "npm run release:check-docs:current && npm run build && npm pack --dry-run --ignore-scripts",
"prepare": "husky",
"test:pack": "vitest run --config /dev/null test/sdk/packaging.test.ts"
},
"keywords": [
"knowledge",
"wiki",
"llm",
"compiler",
"markdown",
"obsidian"
],
"license": "MIT",
"author": "Ethan Joffe",
"repository": {
"type": "git",
"url": "git+https://github.com/atomicstrata/llm-wiki-compiler.git"
},
"homepage": "https://github.com/atomicstrata/llm-wiki-compiler#readme",
"bugs": {
"url": "https://github.com/atomicstrata/llm-wiki-compiler/issues"
},
"files": [
"dist/",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=24"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.163",
"@anthropic-ai/sdk": "^0.101.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@mozilla/readability": "^0.6.0",
"ajv": "^8.20.0",
"canonicalize": "^3.0.0",
"chokidar": "^4.0.0",
"commander": "^13.0.0",
"dotenv": "^17.4.0",
"js-yaml": "^4.3.0",
"jsdom": "^25.0.0",
"markdown-it": "^14.3.0",
"openai": "^6.42.0",
"p-limit": "^6.0.0",
"pdf-parse": "^2.4.5",
"sanitize-html": "^2.17.6",
"turndown": "^7.2.0",
"youtube-transcript": "^1.3.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@copilotkit/aimock": "^1.15.1",
"@types/js-yaml": "^4.0.9",
"@types/jsdom": "^21.1.0",
"@types/markdown-it": "^14.1.2",
"@types/sanitize-html": "^2.16.1",
"@types/turndown": "^5.0.0",
"fallow": "2.82.0",
"husky": "^9.1.7",
"madge": "^8.0.0",
"tsup": "^8.0.0",
"typescript": "^5.7.0",
"vitest": "^3.2.7"
},
"volta": {
"node": "24.16.0"
},
"overrides": {
"esbuild": "0.28.1"
}
}