-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.33 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.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
{
"name": "lucid-memory",
"version": "0.6.5",
"private": true,
"workspaces": ["packages/*"],
"type": "module",
"scripts": {
"build": "bun run build:rust && bun run build:ts",
"build:rust": "cargo build --release",
"build:ts": "bun --filter '*' run build",
"dev": "bun --filter '*' run dev",
"test": "bun run test:rust && bun run test:ts",
"test:rust": "cargo test",
"test:ts": "bun --filter '*' test",
"lint": "bun run lint:rust && bun run lint:ts",
"lint:rust": "cargo clippy --all-targets --all-features",
"lint:ts": "biome check .",
"lint:fix": "biome check --write .",
"fmt": "bun run fmt:rust && bun run fmt:ts",
"fmt:rust": "cargo fmt",
"fmt:ts": "biome format --write .",
"check": "bun run lint && bun run test",
"clean": "cargo clean && rm -rf node_modules ts/node_modules",
"bench": "bun run bench:rust && bun run bench:quality && bun run bench:rag && bun run bench:realistic && bun run bench:tokens",
"bench:tokens": "bun run benchmarks/quality/token-efficiency.ts",
"bench:rust": "cargo bench -p lucid-core",
"bench:quality": "bun run benchmarks/quality/index.ts",
"bench:rag": "bun run benchmarks/quality/rag-comparison.ts",
"bench:realistic": "bun run benchmarks/quality/realistic-dev.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.3.12",
"bun-types": "^1.3.8",
"typescript": "^5.9.3"
}
}