-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.05 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
{
"name": "mage-memory",
"version": "0.0.12",
"packageManager": "pnpm@11.2.2",
"description": "mage — a portable, self-maintaining knowledge base for software systems: durable git-backed notes navigable as an Obsidian graph, usable by any AI coding agent. CLI: init, index, skills, ingest, redact, observe, connect, dream, link, verify, unlink, list, status, doctor, distill.",
"type": "module",
"bin": {
"mage": "dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"skills",
".claude-plugin",
"assets",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"vendor:graph": "node scripts/vendor-graph.mjs",
"prebuild": "node scripts/vendor-graph.mjs",
"build": "tsup",
"dev": "tsup --watch",
"docs:gen": "pnpm build && node scripts/gen-docs.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "pnpm build && vitest run -c vitest.integration.config.ts",
"prepublishOnly": "pnpm build"
},
"keywords": [
"knowledge-base",
"memory",
"ai-agents",
"agents",
"obsidian",
"notes",
"documentation",
"claude-code"
],
"author": "Sumit Patel",
"license": "MIT",
"homepage": "https://github.com/Sumit1993/mage-memory",
"repository": {
"type": "git",
"url": "git+https://github.com/Sumit1993/mage-memory.git"
},
"bugs": {
"url": "https://github.com/Sumit1993/mage-memory/issues"
},
"dependencies": {
"@inquirer/prompts": "^8.5.2",
"commander": "^15.0.0",
"ora": "^9.4.1",
"picocolors": "^1.1.1",
"tar": "^7.5.19",
"yaml": "^2.9.0"
},
"devDependencies": {
"@types/node": "^26.0.1",
"@types/tar": "^7.0.87",
"@vitest/coverage-v8": "^4.1.9",
"force-graph": "^1.51.4",
"tsup": "^8.3.5",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}