-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.19 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.19 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "memory-journal-mcp",
"version": "7.6.1",
"description": "Project context management for AI-assisted development - Persistent knowledge graphs and intelligent context recall across fragmented AI threads",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"memory-journal-mcp": "dist/cli.js"
},
"files": [
"dist/",
"skills/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsc --watch",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run typecheck",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage && npx tsx scripts/update-badges.ts",
"bench": "vitest bench --run",
"pretest:e2e": "node -e \"fs.rmSync('.test-output/e2e', { recursive: true, force: true })\"",
"test:e2e": "playwright test",
"generate:instructions": "node scripts/generate-server-instructions.ts",
"prepublishOnly": "npm run check && npm run test && npm run build"
},
"keywords": [
"mcp",
"context-management",
"project-management",
"ai-assistant",
"knowledge-graph",
"developer-tools",
"git",
"github-projects",
"model-context-protocol",
"persistent-memory",
"thread-continuity",
"semantic-search",
"sqlite",
"typescript"
],
"author": "Adamic.tech",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/neverinfamous/memory-journal-mcp.git"
},
"bugs": {
"url": "https://github.com/neverinfamous/memory-journal-mcp/issues"
},
"homepage": "https://github.com/neverinfamous/memory-journal-mcp#readme",
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"@huggingface/transformers": "^4.0.1",
"@modelcontextprotocol/sdk": "^1.27.1",
"@octokit/graphql": "^9.0.3",
"@octokit/rest": "^22.0.1",
"better-sqlite3": "^12.8.0",
"commander": "^14.0.3",
"express": "^5.2.1",
"jose": "^6.2.1",
"simple-git": "^3.35.2",
"sqlite-vec": "^0.1.7-alpha.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"esbuild": "^0.28.0",
"@playwright/test": "^1.59.1",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.6",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.3",
"eslint": "^10.2.0",
"globals": "^17.4.0",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vitest": "^4.1.3"
},
"overrides": {
"axios": "^1.13.6",
"brace-expansion": "^2.0.2",
"diff": "9.0.0",
"glob": "^11.1.0",
"onnxruntime-web": "npm:empty-npm-package@1.0.0",
"sharp": "npm:empty-npm-package@1.0.0",
"zod": "$zod",
"minimatch": "10.2.5",
"tar": "7.5.13",
"tmp": "^0.2.5",
"vite": "^8.0.5"
}
}