-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 755 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 755 Bytes
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
{
"name": "memex-claude",
"version": "1.5.0",
"description": "Memex skill/memory/rule router for Claude Code — semantic context injection via hooks",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jim80net/memex-claude"
},
"type": "module",
"scripts": {
"build": "bun run build.ts",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"dependencies": {
"@huggingface/transformers": "^3.8.1",
"@jim80net/memex-core": "^0.3.1"
},
"packageManager": "pnpm@9.15.0",
"pnpm": {
"overrides": {
"sharp": "link:./stubs/sharp"
}
}
}