-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.1 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.1 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "zero-cache",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:pg15": "vitest --project='*15*' run",
"test:pg15:watch": "vitest --project='*15*'",
"test:pg16": "vitest --project='*16*' run",
"test:pg16:watch": "vitest --project='*16*'",
"test:pg17": "vitest --project='*17*' run",
"test:pg17:watch": "vitest --project='*17*'",
"test:no-pg": "vitest --project='*no-pg*' run",
"test:no-pg:watch": "vitest --project='*no-pg*'",
"check-types": "tsc",
"check-types:watch": "tsc --watch",
"format": "prettier --write .",
"check-format": "prettier --check .",
"lint": "oxlint --quiet --config ../../oxlint.config.ts",
"bench": "vitest run --config vitest.config.bench.ts",
"bench:bmf": "BENCH_OUTPUT_FORMAT=json npm run bench 2>&1 | npx tsx ../shared/src/tool/mitata-json-to-bmf.ts",
"bench:bmf:silent": "npm run bench:bmf --silent",
"local": "tsx tool/local.ts",
"start": "tsx ./src/server/runner/main.ts",
"benchdb": "tsx ./bench/bench.ts",
"double": "tsx ./bench/double.ts",
"wal_bench": "tsx ./bench/wal-bench.ts",
"wal2_bench": "tsx ./bench/wal2-bench.ts"
},
"dependencies": {
"@databases/sql": "^3.3.0",
"@drdgvhbh/postgres-error-codes": "^0.0.6",
"@fastify/cors": "^10.0.0",
"@fastify/websocket": "^11.0.0",
"@google-cloud/precise-date": "^4.0.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/api-logs": "^0.203.0",
"@opentelemetry/auto-instrumentations-node": "^0.62.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.203.0",
"@opentelemetry/resources": "^2.0.1",
"@opentelemetry/sdk-metrics": "^2.0.1",
"@opentelemetry/sdk-node": "^0.203.0",
"@opentelemetry/sdk-trace-node": "^2.0.1",
"@postgresql-typed/oids": "^0.2.0",
"@rocicorp/lock": "^1.0.4",
"@rocicorp/logger": "^5.4.0",
"@rocicorp/resolver": "^1.0.2",
"@rocicorp/zero-sqlite3": "^1.0.15",
"@types/basic-auth": "^1.1.8",
"basic-auth": "^2.0.1",
"chalk": "^5.3.0",
"cloudevents": "^10.0.0",
"compare-utf8": "^0.1.1",
"defu": "^6.1.4",
"eventemitter3": "^5.0.1",
"fastify": "^5.0.0",
"is-in-subnet": "^4.0.1",
"jose": "^5.9.3",
"json-custom-numbers": "^3.1.1",
"nanoid": "^5.1.2",
"parse-prometheus-text-format": "^1.1.1",
"pg-format": "npm:pg-format-fix@^1.0.5",
"postgres": "3.4.7",
"tsx": "^4.21.0",
"url-pattern": "^1.0.3",
"urlpattern-polyfill": "^10.1.0",
"ws": "^8.18.1",
"zero-protocol": "0.0.0",
"zero-types": "0.0.0",
"zql": "0.0.0",
"zqlite": "0.0.0"
},
"devDependencies": {
"@rocicorp/zero-events": "0.0.4",
"@testcontainers/postgresql": "^10.9.0",
"@types/node": "^22.10.5",
"@types/pg-format": "^1.0.5",
"@types/strip-ansi": "^3.0.0",
"@types/ws": "^8.5.12",
"@vitest/runner": "4.1.2",
"mockttp": "^4.2.1",
"nock": "^14.0.4",
"otel": "0.0.0",
"shared": "0.0.0",
"typescript": "~5.9.3",
"vitest": "4.1.2",
"zero-protocol": "0.0.0",
"zero-schema": "0.0.0",
"zql": "0.0.0"
}
}