-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 928 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 928 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
{
"name": "pg-toolbelt",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun run --filter '*' build",
"coverage": "bun scripts/coverage.ts",
"check-types": "bun run --filter '*' check-types",
"format-and-lint": "oxfmt --check . && oxlint --deny-warnings",
"format-and-lint:fix": "oxfmt . && oxlint --fix",
"knip": "bun run --filter '*' knip",
"docs:pg-delta": "bun run --filter '@supabase/pg-delta' docs",
"test:pg-delta": "bun run --filter '@supabase/pg-delta' test",
"test:pg-topo": "bun run --filter '@supabase/pg-topo' test",
"version": "changeset version"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/bun": "^1.3.9",
"bun": "^1.3.9",
"nyc": "^18.0.0",
"oxfmt": "0.51.0",
"oxlint": "1.66.0",
"oxlint-tsgolint": "0.23.0"
},
"overrides": {
"cpu-features": "file:./.stubs/cpu-features"
}
}