-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 965 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 965 Bytes
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
{
"name": "mneme",
"version": "0.0.0",
"private": true,
"description": "The open, user-sovereign memory layer for AI.",
"license": "Apache-2.0",
"type": "module",
"workspaces": ["packages/*", "apps/*", "tests/*"],
"scripts": {
"build": "bun run --filter '*' build",
"test": "bun test",
"typecheck": "bun run --filter '*' typecheck",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"smoke": "bun run scripts/smoke-test.ts",
"eval": "bun run --filter '@mnemehq/eval' eval --",
"eval:live": "bun run --filter '@mnemehq/eval' eval -- --live",
"eval:baseline": "bun run --filter '@mnemehq/eval' eval -- --live --write-baseline"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest",
"publint": "^0.3.21",
"tsdown": "^0.22.0",
"typescript": "^5.7.2",
"unrun": "^0.3.0"
},
"engines": {
"bun": ">=1.3.0"
}
}