-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.69 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
{
"name": "@ultimat3/root",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"examples/*",
"examples/*/apps/*",
"examples/*/packages/*",
"dummy/*",
"dummy/*/apps/*",
"dummy/*/packages/*"
],
"scripts": {
"async-context-guard": "bun run scripts/async-context-guard.ts",
"boundaries": "bun run scripts/boundaries.ts",
"changelog-check": "bun run scripts/changelog-check.ts",
"coverage": "bun run scripts/coverage-gate.ts --all",
"coverage:package": "bun run scripts/coverage-gate.ts --package",
"dead-docs-host": "bun run scripts/dead-docs-host.ts",
"flight-copies": "bun run scripts/flight-copies.ts",
"finite-bounds": "bun run scripts/finite-bounds.ts",
"dev": "bun run --filter @ultimat3/cli dev",
"fix-shell-arg": "bun run scripts/fix-shell-arg.ts",
"error-render": "bun run scripts/error-render.ts",
"format": "biome format --write .",
"framework-tables": "bun run scripts/framework-tables.ts",
"frozen-records": "bun run scripts/frozen-records.ts",
"gate-codes": "bun run scripts/gate-codes.ts",
"index-of-order": "bun run scripts/index-of-order.ts",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"lockfile": "bun run scripts/lockfile-pins.ts",
"lockfile:fix": "bun run scripts/lockfile-pins.ts --write",
"manifest": "bun run scripts/manifest.ts",
"node-imports": "bun run scripts/node-imports.ts",
"package-map-graph": "bun run scripts/package-map-graph.ts",
"proto-index": "bun run scripts/proto-index.ts",
"render-modes": "bun run scripts/render-modes.ts",
"secret-compare": "bun run scripts/secret-compare.ts",
"setup": "bun run scripts/setup.ts",
"side-effects": "bun run scripts/side-effects.ts",
"skip-if-cleanup": "bun run scripts/skip-if-cleanup.ts",
"sql-literal-copies": "bun run scripts/sql-literal-copies.ts",
"test": "bun test --isolate --path-ignore-patterns='**/dist/**' --path-ignore-patterns='**/examples/**' --path-ignore-patterns='**/dummy/**'",
"test:watch": "bun test --watch --isolate --path-ignore-patterns='**/dist/**' --path-ignore-patterns='**/examples/**' --path-ignore-patterns='**/dummy/**'",
"typecheck": "tsc -b --pretty",
"typecheck:clean": "tsc -b --clean",
"verify": "bun run scripts/verify.ts",
"workspaces:list": "bun run scripts/list-workspaces.ts",
"x": "bun run packages/cli/src/bin.ts"
},
"bin": {
"x": "./packages/cli/src/bin.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@electric-sql/pglite": "0.5.4",
"@types/bun": "1.4.0",
"lefthook": "^2.1.10",
"solid-js": "1.9.14",
"typescript": "^7.0.2"
},
"engines": {
"bun": ">=1.4.0"
}
}