-
Notifications
You must be signed in to change notification settings - Fork 163
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.82 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.82 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"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:pg18": "vitest --project='*18*' run",
"test:pg18:watch": "vitest --project='*18*'",
"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": "oxfmt .",
"check-format": "oxfmt --check .",
"lint": "oxlint --quiet --config ../../oxlint.config.ts",
"bench": "vitest run --config vitest.config.bench.ts",
"bench:bmf": "BENCH_OUTPUT_FORMAT=json pnpm run bench 2>&1 | node ../shared/src/tool/mitata-json-to-bmf.ts",
"bench:bmf:silent": "pnpm run bench:bmf --silent",
"bench:pg": "vitest run --config vitest.config.bench.pg.ts",
"bench:pg:bmf": "BENCH_OUTPUT_FORMAT=json pnpm run bench:pg 2>&1 | node ../shared/src/tool/mitata-json-to-bmf.ts",
"bench:pg:bmf:silent": "pnpm run bench:pg:bmf --silent",
"local": "node tool/local.ts",
"start": "node ./src/server/runner/main.ts",
"benchdb": "node ./bench/bench.ts",
"double": "node ./bench/double.ts",
"wal_bench": "node ./bench/wal-bench.ts",
"wal2_bench": "node ./bench/wal2-bench.ts",
"fmt": "oxfmt .",
"check-fmt": "oxfmt --check ."
},
"dependencies": {
"@badrap/valita": "0.3.11",
"@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.218.0",
"@opentelemetry/auto-instrumentations-node": "^0.76.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.218.0",
"@opentelemetry/otlp-exporter-base": "^0.218.0",
"@opentelemetry/resources": "^2.7.1",
"@opentelemetry/sdk-metrics": "^2.7.1",
"@opentelemetry/sdk-node": "^0.218.0",
"@opentelemetry/sdk-trace-node": "^2.7.1",
"@opentelemetry/semantic-conventions": "^1.41.1",
"@postgresql-typed/oids": "^0.2.0",
"@rocicorp/lock": "^1.0.4",
"@rocicorp/logger": "^6.1.0",
"@rocicorp/resolver": "^1.0.2",
"@rocicorp/zero-sqlite3": "^1.1.4",
"@types/basic-auth": "^1.1.8",
"basic-auth": "^2.0.1",
"cloudevents": "^10.0.0",
"compare-utf8": "^0.2.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",
"url-pattern": "^1.0.3",
"urlpattern-polyfill": "^10.1.0",
"ws": "^8.18.1",
"zero-protocol": "workspace:*",
"zero-types": "workspace:*",
"zql": "workspace:*",
"zqlite": "workspace:*"
},
"devDependencies": {
"@rocicorp/zero-events": "workspace:*",
"@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.6",
"esbuild": "0.27.7",
"fast-check": "^3.18.0",
"mockttp": "^4.2.1",
"nock": "^14.0.4",
"otel": "workspace:*",
"oxfmt": "^0.65.0",
"shared": "workspace:*",
"testcontainers": "^10.28.0",
"typescript": "~7.0.2",
"vitest": "^4.1.6",
"zero-permissions": "workspace:*",
"zero-protocol": "workspace:*",
"zero-schema": "workspace:*",
"zql": "workspace:*"
},
"packageManager": "pnpm@11.11.0"
}