-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 3.07 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 3.07 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
{
"name": "durable-streams",
"version": "0.2.0",
"private": true,
"description": "Durable Streams server implementation and storage adapters.",
"homepage": "https://github.com/gingerhendrix/streamsy#readme",
"bugs": {
"url": "https://github.com/gingerhendrix/streamsy/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gingerhendrix/streamsy.git"
},
"workspaces": {
"packages": [
"packages/*",
"examples/*"
],
"catalog": {
"alchemy": "0.82.1",
"@cloudflare/workers-types": "^4.20251228.0",
"typescript": "^5.8.3"
}
},
"type": "module",
"scripts": {
"deploy": "bun run --cwd packages/conformance-tests deploy",
"dev": "bun run --cwd packages/conformance-tests dev",
"destroy": "bun run --cwd packages/conformance-tests destroy",
"typecheck": "bun run build && bun run --filter '*' typecheck",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"format": "oxfmt . --write",
"format:check": "oxfmt . --check",
"test": "bun run test:unit",
"test:conformance": "bun run test:conformance:client && bun run test:conformance:memory && bun run test:conformance:fs && bun run test:conformance:sqlite && bun run test:conformance:do",
"test:unit": "bun run --cwd packages/core test:unit && bun run --cwd packages/client test:unit && bun run --cwd packages/json test:unit && bun run --cwd packages/experimental test:unit && bun run --cwd packages/state test:unit && bun run --cwd packages/storage-sqlite test:unit && bun run --cwd packages/storage-fs test:unit && bun run --cwd packages/storage-durable-object test:unit",
"smoke:memory-server:http": "bun run --cwd examples/memory-server smoke:http",
"smoke:issue-tracker": "bun run --cwd examples/issue-tracker-demo smoke:http",
"smoke:hackernews": "bun run --cwd examples/hackernews-newest-stream smoke:http",
"test:conformance:memory": "bun run --cwd packages/conformance-tests test:memory",
"test:conformance:client": "bun run --cwd packages/conformance-tests test:client",
"test:conformance:fs": "bun run --cwd packages/conformance-tests test:fs",
"test:conformance:sqlite": "bun run --cwd packages/conformance-tests test:sqlite",
"test:conformance:do": "bun run --cwd packages/conformance-tests test:do",
"build": "bun run --cwd packages/core build && bun run --cwd packages/client build && bun run --cwd packages/json build && bun run --cwd packages/experimental build && bun run --cwd packages/state build && bun run --cwd packages/storage-sqlite build && bun run --cwd packages/storage-fs build && bun run --cwd packages/storage-durable-object build",
"pack:dry-run": "for dir in packages/core packages/client packages/json packages/experimental packages/state packages/storage-sqlite packages/storage-fs packages/storage-durable-object; do (cd \"$dir\" && bun pm pack --dry-run); done"
},
"devDependencies": {
"oxfmt": "^0.48.0",
"oxlint": "^1.63.0",
"tsdown": "^0.9.9"
},
"overrides": {
"@durable-streams/client": "^0.2.6",
"@tanstack/db": "0.6.8"
}
}