-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 4 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 4 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "codex-auto-memory",
"version": "0.1.1",
"description": "A Markdown-first, local-first memory runtime for Codex with wrapper, hook, MCP, skill, and AGENTS integration surfaces.",
"type": "module",
"bin": {
"cam": "dist/cli.js"
},
"files": [
"dist",
"docs",
"schemas",
"README.md",
"README.zh-TW.md",
"README.en.md",
"README.ja.md",
"CHANGELOG.md",
"SUPPORT.md",
"SECURITY.md",
"CODE_OF_CONDUCT.md",
"LICENSE"
],
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.11.0",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"clean": "rimraf dist coverage .tmp",
"dev": "tsx src/cli.ts",
"lint": "tsc --noEmit -p tsconfig.json",
"pack:check": "npm pack --dry-run --cache .tmp/npm-cache",
"pack:release": "rimraf .release-artifacts && node -e \"require('node:fs').mkdirSync('.release-artifacts', { recursive: true })\" && npm pack --pack-destination .release-artifacts --cache .tmp/npm-cache",
"prepack": "pnpm build",
"test": "node --max-old-space-size=6144 ./node_modules/vitest/vitest.mjs run --exclude test/dist-cli-smoke.test.ts --exclude test/tarball-install-smoke.test.ts",
"test:coverage": "node --max-old-space-size=6144 ./node_modules/vitest/vitest.mjs run --coverage --exclude test/dist-cli-smoke.test.ts --exclude test/tarball-install-smoke.test.ts",
"test:cli-smoke": "node --max-old-space-size=6144 ./node_modules/vitest/vitest.mjs run test/audit.test.ts test/doctor-command.test.ts test/hooks-command.test.ts test/integrations-command.test.ts test/mcp-command.test.ts test/skills-command.test.ts test/memory-command.test.ts test/recall-command.test.ts test/session-command.test.ts test/wrapper-session-continuity.test.ts",
"test:dist-cli-smoke:only": "node --max-old-space-size=6144 ./node_modules/vitest/vitest.mjs run test/dist-cli-smoke.test.ts",
"test:dist-cli-smoke": "pnpm build && node --max-old-space-size=6144 ./node_modules/vitest/vitest.mjs run test/dist-cli-smoke.test.ts",
"test:docs-contract": "node --max-old-space-size=6144 ./node_modules/vitest/vitest.mjs run test/docs-contract.test.ts",
"test:reviewer-smoke": "node --max-old-space-size=6144 ./node_modules/vitest/vitest.mjs run test/docs-contract.test.ts test/doctor-command.test.ts test/hooks-command.test.ts test/integrations-command.test.ts test/mcp-command.test.ts test/skills-command.test.ts test/memory-command.test.ts test/recall-command.test.ts test/session-command.test.ts test/wrapper-session-continuity.test.ts test/session-continuity.test.ts",
"test:tarball-install-smoke": "node --max-old-space-size=6144 ./node_modules/vitest/vitest.mjs run test/tarball-install-smoke.test.ts",
"test:watch": "node --max-old-space-size=6144 ./node_modules/vitest/vitest.mjs",
"verify:smoke-release": "pnpm build && pnpm test:dist-cli-smoke:only && pnpm pack:check && pnpm test:tarball-install-smoke",
"verify:ci": "pnpm lint && pnpm test:docs-contract && pnpm test:reviewer-smoke && pnpm test:cli-smoke && pnpm test && pnpm test:coverage && pnpm verify:smoke-release",
"verify:release": "pnpm verify:ci"
},
"keywords": [
"codex",
"memory",
"cli",
"markdown",
"automation"
],
"author": "Boulea7",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Boulea7/Codex-Auto-Memory.git"
},
"bugs": {
"url": "https://github.com/Boulea7/Codex-Auto-Memory/issues"
},
"homepage": "https://github.com/Boulea7/Codex-Auto-Memory#readme",
"publishConfig": {
"access": "public"
},
"pnpm": {
"overrides": {
"@hono/node-server": "1.19.14",
"hono": "4.12.14",
"path-to-regexp": "8.4.2"
}
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"commander": "^14.0.1",
"smol-toml": "^1.6.1",
"zod": "^4.0.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^4.0.0",
"rimraf": "^6.0.1",
"tsx": "^4.20.3",
"typescript": "^6.0.2",
"vitest": "^4.0.0"
}
}