-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.59 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
{
"name": "ai-memex-cli",
"version": "0.6.0",
"description": "Git-backed Markdown knowledge base maintained by AI agents",
"type": "module",
"bin": {
"memex": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"test:run": "vitest run",
"prepublishOnly": "pnpm build",
"changelog": "changelogen",
"changelog:bump": "changelogen --bump --patch",
"release": "node .claude/skills/release/scripts/orchestrator.mjs",
"docs:sync": "node scripts/sync-docs.mjs"
},
"keywords": [
"cli",
"knowledge-base",
"wiki",
"llm",
"claude",
"ai-agent",
"memex",
"persistent-memory"
],
"author": "zelixag",
"license": "MIT",
"homepage": "https://github.com/zelixag/ai-memex-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zelixag/ai-memex-cli.git"
},
"bugs": {
"url": "https://github.com/zelixag/ai-memex-cli/issues"
},
"files": [
"dist/",
"templates/",
"README.md",
"README.zh-CN.md",
"CHANGELOG.md",
"LICENSE"
],
"dependencies": {
"@inquirer/prompts": "^8.4.1",
"@mozilla/readability": "^0.6.0",
"cac": "^6.7.14",
"chokidar": "^4.0.0",
"gray-matter": "^4.0.3",
"jsdom": "^29.0.2",
"picocolors": "^1.1.1",
"turndown": "^7.2.4",
"undici": "^8.1.0"
},
"devDependencies": {
"@types/jsdom": "^28.0.1",
"@types/node": "^20.0.0",
"@types/turndown": "^5.0.6",
"changelogen": "^0.6.2",
"typescript": "^5.4.0",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}