-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.06 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
{
"name": "@jackwener/llm-wiki",
"version": "0.6.0",
"description": "Agent-native LLM Wiki — AI-maintained knowledge base with Obsidian compatibility",
"type": "module",
"bin": {
"llm-wiki": "./dist/cli.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"pretest": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"keywords": [
"llm",
"wiki",
"knowledge-base",
"ai",
"obsidian",
"agent"
],
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackwener/llm-wiki.git"
},
"engines": {
"node": ">=20"
},
"files": [
"dist",
"skills"
],
"dependencies": {
"commander": "^13.0.0",
"gray-matter": "^4.0.3",
"toml": "^3.0.0"
},
"optionalDependencies": {
"pg": "^8.20.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/pg": "^8.20.0",
"tsup": "^8.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}