forked from mem9-ai/mem9
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 936 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 936 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
35
36
37
38
39
40
41
42
{
"name": "@mem9/codex-plugin",
"version": "0.2.6",
"description": "Persistent memory for Codex with setup-driven hooks, prompt recall, and stop-time save.",
"type": "module",
"license": "Apache-2.0",
"author": "mem9-ai",
"repository": {
"type": "git",
"url": "git+https://github.com/mem9-ai/mem9.git",
"directory": "codex-plugin"
},
"homepage": "https://github.com/mem9-ai/mem9/tree/main/codex-plugin#readme",
"keywords": [
"codex",
"codex-plugin",
"memory",
"agent-memory",
"mem9"
],
"files": [
".codex-plugin/",
"bootstrap-hooks/",
"hooks/",
"lib/",
"skills/",
"templates/",
"README.md"
],
"scripts": {
"test": "node --test ./tests/*.test.mjs",
"typecheck": "tsc -p ./tsconfig.json"
},
"engines": {
"node": ">=22"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^22.15.30",
"typescript": "^5.5.0"
}
}