-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.71 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.71 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
{
"name": "soda-gql",
"version": "0.13.1",
"type": "module",
"private": true,
"workspaces": [
"packages/*",
"playgrounds/*",
"website"
],
"scripts": {
"prepublish": "bun run scripts/prepublish.ts",
"publish-local": "bun scripts/publish-local.ts",
"quality:prepare": "bun fixture:setup && bun exports:sync",
"check:tsconfig-refs": "bun scripts/check-tsconfig-references.ts",
"quality": "bun run check:tsconfig-refs && bun run typecheck && bun run biome:check",
"typecheck": "tsc -b",
"biome:check": "biome check --write .",
"exports:sync": "bun scripts/sync-exports.ts && bun scripts/generate-entry-wrappers.ts",
"build": "bun run --filter=@soda-gql/swc build:dev && bun run exports:sync && bunx tsdown",
"build:release": "bun run --filter=@soda-gql/swc build && bun run exports:sync && bunx tsdown",
"test": "bun run --filter=@soda-gql/swc build:dev && bun --conditions=@soda-gql test",
"test:coverage": "bun --conditions=@soda-gql test --coverage",
"clean:dist": "find packages -name dist -type d -prune -exec rm -rf {} +",
"soda-gql": "bun --conditions=@soda-gql packages/tools/src/cli/index.ts",
"fixture:setup": "bun --conditions=@soda-gql scripts/fixture-setup.ts",
"perf:builder": "bun run scripts/perf/collect-builder-metrics.ts",
"perf:transformer": "bun run perf-measures/transformer/scripts/run.ts",
"perf:typecheck": "bun run perf-measures/type-check/scripts/run.ts",
"perf:codegen-typecheck": "bun run perf-measures/codegen-typecheck/scripts/run.ts",
"perf:codegen-typecheck:baseline": "bun run perf-measures/codegen-typecheck/scripts/run.ts --baseline",
"perf:codegen-typecheck:all": "bun run perf-measures/codegen-typecheck/scripts/run.ts --all --compare",
"perf:typecheck:generate": "bun run perf-measures/type-check/scripts/run.ts --generate",
"verify:tagged-templates": "bun --conditions=@soda-gql playgrounds/vite-react/src/graphql/verify-tagged-templates.ts",
"cleanup": "rm -rf .cache tests/.tmp",
"vscode:package": "bun run build && bun run --filter=soda-gql-vscode-extension build && bun run --filter=soda-gql-vscode-extension package",
"vscode:install": "bun run build && bun run --filter=soda-gql-vscode-extension build && bun run --filter=soda-gql-vscode-extension package:install",
"website:dev": "bun run --filter=@soda-gql/website dev",
"website:build": "bun run --filter=@soda-gql/website build"
},
"devDependencies": {
"@babel/core": "*",
"@babel/parser": "*",
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@babel/traverse": "*",
"@babel/types": "*",
"@biomejs/biome": "2.2.3",
"@soda-gql/babel": "workspace:*",
"@soda-gql/builder": "workspace:*",
"@soda-gql/tools": "workspace:*",
"@soda-gql/colocation-tools": "workspace:*",
"@soda-gql/common": "workspace:*",
"@soda-gql/config": "workspace:*",
"@soda-gql/core": "workspace:*",
"@soda-gql/swc": "workspace:*",
"@soda-gql/tsc": "workspace:*",
"@soda-gql/webpack-plugin": "workspace:*",
"@swc/core": "^1.0.0",
"@swc/types": "^0.1.0",
"@types/babel__core": "^7.20.5",
"@types/babel__parser": "^7.1.5",
"@types/babel__traverse": "^7.20.6",
"@types/bun": "1.3.0",
"@types/node": "^24.7.2",
"graphql": "^16.12.0",
"neverthrow": "^8.2.0",
"tsdown": "^0.17.4",
"typescript": "^5.9.2",
"zod": "^4.1.11"
},
"patchedDependencies": {
"@swc/core@1.13.5": "patches/@swc%2Fcore@1.13.5.patch"
},
"resolutions": {
"graphql": "16.12.0",
"typescript": "5.9.2",
"react": "19.1.0",
"react-dom": "19.1.0"
},
"overrides": {
"graphql": "16.12.0",
"react": "19.1.0",
"react-dom": "19.1.0"
}
}