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
|
{
"name": "dispatch",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"check": "biome check .",
"check:fix": "biome check --write .",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -b --pretty",
"test:bun": "bun test packages/storage-sqlite/src packages/trace-store/src packages/observability-collector/src packages/transport-ws/src/server.bun.test.ts packages/transport-http/src/server.bun.test.ts",
"test:all": "bun run test && bun run test:bun",
"dev": "bun packages/host-bin/src/main.ts",
"dev:all": "./bin/up",
"dispatch": "bun packages/cli/src/main.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@types/bun": "^1.3.14",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}
|