-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
167 lines (167 loc) · 4.77 KB
/
Copy pathpackage.json
File metadata and controls
167 lines (167 loc) · 4.77 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
{
"name": "opencode-cross-session-memory",
"version": "1.0.0",
"description": "Self-hosted continuity infrastructure for OpenCode and Codex agents",
"license": "MIT",
"author": {
"name": "Donovan"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NovasPlace/CSM.git"
},
"homepage": "https://github.com/NovasPlace/CSM#readme",
"bugs": {
"url": "https://github.com/NovasPlace/CSM/issues"
},
"keywords": [
"ai-agent",
"opencode",
"codex",
"memory",
"context",
"continuity",
"postgresql",
"sqlite"
],
"engines": {
"node": "^22.22.2 || ^24.15.0 || >=26.0.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"csm-init": "dist/cli/init-db.js",
"csm-doctor": "dist/cli/doctor.js",
"csm-mcp": "dist/cli/mcp.js"
},
"files": [
"dist/",
".codex-plugin/",
".mcp.json",
"runtime/",
".env.example",
"SECURITY.md",
"docs/README.md",
"docs/FEATURES.md",
"docs/PRODUCT_ARCHITECTURE.md",
"docs/CONFIGURATION_RELIABILITY.md",
"docs/DATA_PRIVACY_AND_LIFECYCLE.md",
"docs/TROUBLESHOOTING.md",
"docs/CODEX_INSTALLATION.md",
"docs/SCHEMA_SUPPORT_MATRIX.md",
"docs/STARTUP_ROLLBACK.md",
"docs/RELEASE_PROCESS.md",
"docs/SUPPLY_CHAIN_SECURITY.md"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./codex-bridge": {
"import": "./dist/codex-bridge.js",
"types": "./dist/codex-bridge.d.ts"
},
"./tui": {
"import": "./dist/tui.js",
"types": "./dist/tui.d.ts"
},
"./database": {
"import": "./dist/database.js",
"types": "./dist/database.d.ts"
},
"./embeddings": {
"import": "./dist/embeddings.js",
"types": "./dist/embeddings.d.ts"
},
"./memory-manager": {
"import": "./dist/memory-manager.js",
"types": "./dist/memory-manager.d.ts"
},
"./context-governor": {
"import": "./dist/context-governor.js",
"types": "./dist/context-governor.d.ts"
},
"./redactor": {
"import": "./dist/redactor.js",
"types": "./dist/redactor.d.ts"
},
"./config": {
"import": "./dist/config.js",
"types": "./dist/config.d.ts"
},
"./types": {
"import": "./dist/types.js",
"types": "./dist/types.d.ts"
},
"./belief-promotion": {
"import": "./dist/belief-promotion.js",
"types": "./dist/belief-promotion.d.ts"
}
},
"tui": "dist/tui.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "npx tsx --test test/*.test.ts",
"test:wip": "npx tsx --test wip-tests/*.test.ts",
"verify": "npm run build && npm run typecheck && npx tsx --test test/*.test.ts",
"drill:backup-restore": "npm run build && npx tsx scripts/backup-restore-drill.ts",
"verify:enterprise": "npm run verify && npm run lint:src && npm run drill:backup-restore",
"verify:package": "npm run build && npx tsx --test test/package-release-boundary.test.ts",
"verify:supply-chain": "npm run security:audit && npm run security:licenses && npm run security:sbom && npx tsx --test test/supply-chain-release.test.ts",
"verify:release": "node scripts/verify-release.mjs",
"package:dry-run": "npm run build && node scripts/release-package-stage.mjs --dry-run",
"package:create": "npm run build && node scripts/release-package-stage.mjs --output .release",
"security:audit": "npm audit --omit=dev --audit-level=high",
"security:licenses": "node scripts/verify-production-licenses.mjs",
"security:sbom": "node scripts/generate-sbom.mjs",
"benchmark:long-session": "npx tsx src/benchmark.ts",
"lint": "npm run lint:src",
"lint:src": "eslint src --max-warnings=7",
"lint:all": "eslint .",
"lint:fix": "eslint src --fix",
"csm": "npx tsx scripts/csm-query.ts",
"db:setup": "node dist/cli/init-db.js",
"doctor": "node dist/cli/doctor.js"
},
"dependencies": {
"@opencode-ai/plugin": "1.17.13",
"better-sqlite3": "^12.11.1",
"pg": "^8.13.0",
"pgvector": "^0.3.0"
},
"peerDependencies": {
"@opentui/core": ">=0.1.0",
"@opentui/solid": ">=0.1.0",
"solid-js": ">=1.9.12 <2"
},
"peerDependenciesMeta": {
"@opentui/solid": {
"optional": true
},
"@opentui/core": {
"optional": true
},
"solid-js": {
"optional": true
}
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^26.0.1",
"@types/pg": "^8.20.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"tsx": "^4.23.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.62.1"
}
}