-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.26 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
{
"name": "@jerryjiao/knowflow",
"version": "0.5.0",
"description": "Agent-native Markdown workspace for raw capture, linked wikis, knowledge graphs, and semantic search",
"type": "module",
"bin": {
"knowflow": "./bin/knowflow.js"
},
"files": [
"bin/",
"scripts/",
"templates/",
"docs/",
"!docs/launch",
"examples/",
"README.md",
"README.zh-CN.md",
"CONTRIBUTING.md",
"SECURITY.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"knowflow": "node bin/knowflow.js",
"test": "node --test",
"check": "node --check bin/knowflow.js && node --check scripts/vector-store.mjs && node --check scripts/embedding-config.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jerryjiao/knowflow.git"
},
"homepage": "https://github.com/jerryjiao/knowflow#readme",
"bugs": {
"url": "https://github.com/jerryjiao/knowflow/issues"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0"
},
"engines": {
"node": ">=18"
},
"keywords": [
"ai",
"knowledge-base",
"knowledge-graph",
"knowledge-management",
"personal-knowledge-management",
"markdown",
"ai-agent",
"wiki",
"llm",
"rag",
"cli"
],
"license": "MIT"
}