-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 905 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 905 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": "codex-supermemory",
"version": "1.0.6",
"description": "Persistent memory for OpenAI Codex CLI — powered by Supermemory",
"type": "module",
"main": "dist/cli.js",
"bin": {
"codex-supermemory": "./dist/cli.js"
},
"scripts": {
"build": "node build.mjs",
"typecheck": "tsc --noEmit",
"test": "npm run build && node --test test/unit.mjs"
},
"keywords": [
"codex",
"openai",
"supermemory",
"memory",
"ai",
"coding-agent"
],
"author": "Supermemory",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/supermemoryai/codex-supermemory"
},
"files": [
"dist"
],
"dependencies": {
"@iarna/toml": "^2.2.5",
"supermemory": "4.0.0"
},
"devDependencies": {
"@types/iarna__toml": "^2.0.5",
"@types/node": "^22.0.0",
"esbuild": "^0.25.0",
"typescript": "^5.7.3"
}
}