-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.33 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.33 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
{
"name": "cass-memory",
"version": "0.2.9",
"type": "module",
"description": "Universal memory system for AI coding agents - implements ACE framework",
"author": "Jeffrey Emanuel",
"license": "MIT",
"bin": {
"cass-memory": "./dist/cass-memory",
"cm": "./dist/cass-memory"
},
"main": "./dist/cass-memory",
"scripts": {
"dev": "bun run src/cm.ts",
"dev:watch": "bun --watch run src/cm.ts",
"build:current": "bun build src/cm.ts --compile --outfile dist/cass-memory",
"build:linux": "bun build src/cm.ts --compile --target=bun-linux-x64-baseline --outfile dist/cass-memory-linux-x64",
"build:macos-arm": "bun build src/cm.ts --compile --target=bun-darwin-arm64 --outfile dist/cass-memory-macos-arm64",
"build:macos-x64": "bun build src/cm.ts --compile --target=bun-darwin-x64-baseline --outfile dist/cass-memory-macos-x64",
"build:windows": "bun build src/cm.ts --compile --target=bun-windows-x64-baseline --outfile dist/cass-memory-windows-x64.exe",
"build:all": "bun run build:linux && bun run build:macos-arm && bun run build:macos-x64 && bun run build:windows",
"build": "bun run build:current",
"typecheck": "tsc --noEmit",
"lint": "bun run typecheck",
"typecheck:watch": "tsc --noEmit --watch",
"test": "bun test",
"test:unit": "bun test test/*.test.ts --exclude '*integration*' --exclude '*e2e*'",
"test:integration": "bun test test/*integration*.test.ts test/integration/",
"test:e2e": "bun test test/*e2e*.test.ts",
"test:property": "bun test test/*property*.test.ts",
"test:coverage": "bun test --coverage",
"test:watch": "bun test --watch",
"test:fast": "bun test test/*.fast.test.ts",
"test:ci": "bun test --timeout 60000",
"postinstall": "node scripts/patch-standalone-deps.mjs"
},
"dependencies": {
"@ai-sdk/amazon-bedrock": "^1.1.6",
"@ai-sdk/anthropic": "^1.0.0",
"@ai-sdk/google": "^1.0.0",
"@ai-sdk/openai": "^1.0.0",
"@xenova/transformers": "^2.17.2",
"ai": "^4.0.0",
"chalk": "^5.3.0",
"commander": "^14.0.2",
"ollama-ai-provider": "^1.2.0",
"yaml": "^2.3.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/bun": "^1.3.4",
"@types/diff-match-patch": "^1.0.36",
"@types/node": "^24.10.1",
"fast-check": "^4.4.0",
"typescript": "^5.0.0"
},
"engines": {
"bun": ">=1.0.0"
}
}