-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.46 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.46 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
{
"name": "@opvoid/codememory",
"version": "0.3.5",
"description": "A runtime behavior memory layer for AI-generated code — captures intent, records runtime traces, learns from failures, auto-heals with proven fixes, and shares team intelligence via encrypted LAN relay",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"codememory": "dist/bin.js"
},
"files": [
"dist",
"assets"
],
"scripts": {
"build": "tsup src/index.ts src/bin.ts --format cjs,esm --dts && pnpm run copy-templates",
"copy-templates": "node -e \"const fs=require('fs'),path=require('path');const src=path.resolve('src/templates'),dst=path.resolve('dist/templates');fs.mkdirSync(dst,{recursive:true});for(const f of fs.readdirSync(src))fs.copyFileSync(path.join(src,f),path.join(dst,f));console.log('Copied templates ->',dst)\"",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\"",
"ci": "pnpm run check:brand && pnpm run typecheck && pnpm run lint && pnpm test && pnpm run build",
"check:brand": "node scripts/check-brand.js",
"typecheck": "tsc --noEmit",
"start": "node dist/index.js",
"postinstall": "node -e \"try{require('better-sqlite3')}catch(e){console.log('Rebuilding better-sqlite3...');require('child_process').execSync('pnpm rebuild better-sqlite3',{stdio:'inherit'})}\""
},
"keywords": [
"mcp",
"ai",
"memory",
"runtime",
"behavior",
"auto-heal",
"self-repair",
"guardrails",
"observability",
"sqlite",
"cross-project",
"lineage",
"relay",
"p2p",
"mdns",
"lan",
"team",
"encrypted",
"peer-to-peer"
],
"author": "byte271",
"license": "MIT",
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@9.15.4",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.1",
"better-sqlite3": "^11.0.0",
"express": "^4.21.0",
"multicast-dns": "^7.2.5",
"ws": "^8.21.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.10",
"@types/express": "^4.17.25",
"@types/multicast-dns": "^7.2.4",
"@types/node": "^20.12.7",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.5.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
]
}
}