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
67 lines (67 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.51 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
{
"name": "llm-wiki-compiler",
"version": "0.3.0",
"description": "A knowledge compiler CLI — raw sources in, interlinked wiki out",
"type": "module",
"bin": {
"llmwiki": "./dist/cli.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build && npm test",
"prepare": "husky"
},
"keywords": [
"knowledge",
"wiki",
"llm",
"compiler",
"markdown",
"obsidian"
],
"license": "MIT",
"author": "Ethan Joffe",
"repository": {
"type": "git",
"url": "git+https://github.com/atomicmemory/llm-wiki-compiler.git"
},
"homepage": "https://github.com/atomicmemory/llm-wiki-compiler#readme",
"bugs": {
"url": "https://github.com/atomicmemory/llm-wiki-compiler/issues"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@mozilla/readability": "^0.5.0",
"chokidar": "^4.0.0",
"commander": "^13.0.0",
"dotenv": "^17.4.0",
"js-yaml": "^4.1.1",
"jsdom": "^25.0.0",
"openai": "^4.0.0",
"p-limit": "^6.0.0",
"turndown": "^7.2.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/jsdom": "^21.1.0",
"@types/turndown": "^5.0.0",
"fallow": "2.42.0",
"husky": "^9.1.7",
"tsup": "^8.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}