-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 880 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 880 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
33
34
{
"name": "@scitrera/memorylayer-cc-plugin",
"version": "0.1.22",
"description": "Claude Code plugin for MemoryLayer.ai - persistent memory hooks",
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"memorylayer-hook": "dist/bin/memorylayer-hook.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "npm run build"
},
"author": "scitrera.ai",
"homepage": "https://memorylayer.ai",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/scitrera/memorylayer",
"directory": "oss/memorylayer-cc-plugin"
},
"dependencies": {
"@scitrera/memorylayer-mcp-server": "file:../memorylayer-mcp-typescript"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}