-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 811 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 811 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
{
"name": "@animusystems/paperclip-plugin-agent-memory",
"version": "0.1.0",
"description": "Persistent agent memory via MemOS — auto-injects context, auto-extracts learnings across runs.",
"type": "module",
"license": "MIT",
"author": "Animus Systems",
"paperclipPlugin": {
"manifest": "./dist/manifest.js",
"worker": "./dist/worker.js",
"ui": "./dist/ui/"
},
"scripts": {
"build": "node esbuild.config.mjs",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@paperclipai/plugin-sdk": "^2026.318.0"
},
"devDependencies": {
"@paperclipai/shared": "^2026.318.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"esbuild": "^0.27.3",
"react": "^19.0.0",
"typescript": "^5.7.0"
},
"peerDependencies": {
"react": ">=18"
}
}