-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
173 lines (173 loc) · 7.38 KB
/
Copy pathpackage.json
File metadata and controls
173 lines (173 loc) · 7.38 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{
"name": "onequery-workspace",
"private": false,
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"@astrojs/cloudflare": "13.5.1",
"@astrojs/compiler-rs": "0.2.1",
"@astrojs/mdx": "5.0.6",
"@astrojs/partytown": "2.1.7",
"@astrojs/react": "5.0.5",
"@astrojs/sitemap": "3.7.2",
"@astrojs/starlight": "0.39.2",
"@bufbuild/protobuf": "2.11.0",
"@bufbuild/protovalidate": "1.1.1",
"@connectrpc/connect": "2.1.1",
"@connectrpc/connect-node": "2.1.1",
"@connectrpc/validate": "0.2.0",
"@hono/node-server": "2.0.1",
"@hono/structured-logger": "0.1.0",
"@hono/zod-validator": "0.7.6",
"@nanostores/react": "1.1.0",
"@tabler/icons-react": "3.36.1",
"@tanstack/react-query": "5.90.20",
"@tanstack/react-router": "1.153.1",
"@tanstack/router-plugin": "1.153.1",
"@xstate/react": "6.1.0",
"@types/babel__core": "7.20.5",
"@types/bun": "1.3.11",
"@types/hast": "3.0.4",
"@types/node": "25.9.1",
"@types/pg": "8.20.0",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"antiox": "0.1.4",
"astro": "6.3.7",
"better-auth": "1.5.5",
"better-result": "2.9.2",
"hono": "4.12.16",
"hono-problem-details": "0.6.1",
"hono-rate-limiter": "0.5.3",
"mysql2": "3.22.3",
"nanostores": "1.3.0",
"next-themes": "0.4.6",
"pg": "8.20.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"rehype-minify-whitespace": "6.0.2",
"rehype-parse": "9.0.1",
"rehype-remark": "10.0.1",
"remotion": "4.0.448",
"remark-gfm": "4.0.1",
"remark-stringify": "11.0.0",
"schema-dts": "2.0.0",
"simple-icons": "16.20.0",
"smol-toml": "1.6.1",
"sonner": "2.0.7",
"unified": "11.0.5",
"unstorage": "1.17.4",
"xstate": "5.31.0",
"yaml": "2.8.3",
"zod": "4.4.2"
},
"catalogs": {
"testing": {
"@vitest/coverage-v8": "4.1.1",
"vitest": "4.1.1"
},
"tooling": {
"@astrojs/check": "0.9.9",
"@cloudflare/vite-plugin": "1.32.3",
"@cloudflare/workers-types": "4.20260405.1",
"@bufbuild/buf": "1.67.0",
"@bufbuild/protoc-gen-es": "2.11.0",
"@rolldown/plugin-babel": "0.2.1",
"@tailwindcss/postcss": "4.2.2",
"@tailwindcss/vite": "4.2.2",
"@vitejs/plugin-react": "6.0.1",
"babel-plugin-react-compiler": "1.0.0",
"openclaw": "2026.4.10",
"oxfmt": "0.52.0",
"oxlint": "1.67.0",
"postcss": "8.5.6",
"rollup-plugin-visualizer": "7.0.1",
"tailwindcss": "4.2.2",
"typescript": "5.4.5",
"vite": "8.0.2",
"vite-tsconfig-paths": "6.1.1",
"wrangler": "4.95.0"
}
}
},
"scripts": {
"prepare": "test -d .git && lefthook install || true",
"dev": "bun run dev:setup && turbo workspace:dev --filter='!@onequery/connector'",
"dev:with-connector": "bun run dev:setup && turbo workspace:dev",
"dev:setup": "bun run scripts/dev-setup.ts",
"landing:build": "bunx turbo build --filter @onequery/landing",
"landing:deploy": "bun run --cwd apps/landing deploy",
"landing:deploy:preview": "bun run --cwd apps/landing deploy:preview",
"github:rulesets:check": "bun run --cwd packages/github-rulesets rulesets:check",
"github:rulesets:plan": "bun run --cwd packages/github-rulesets rulesets:plan",
"github:rulesets:apply": "bun run --cwd packages/github-rulesets rulesets:apply",
"build": "turbo build",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format": "oxfmt --check",
"format:fix": "oxfmt .",
"test": "turbo test",
"test:integration": "turbo run test:integration",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "turbo run test:e2e",
"test:e2e:ui": "cd apps/dashboard && bun run test:e2e:ui",
"typecheck": "turbo run typecheck typecheck:root",
"typecheck:root": "tsgo --noEmit -p scripts/tsconfig.json",
"proto:generate": "bun run proto:generate:cli && bun run proto:generate:runtime && bun run proto:generate:workflow",
"proto:generate:cli": "buf generate proto --template proto/buf.gen.yaml --path proto/onequery/cli/v1 -o packages/proto-cli",
"proto:generate:runtime": "buf generate proto --template proto/buf.gen.yaml --path proto/onequery/runtime/v1 -o packages/proto-runtime",
"proto:generate:workflow": "buf generate proto --template proto/buf.gen.yaml --path proto/onequery/workflow/v1 -o packages/proto-workflow",
"proto:generate:rust": "bun run proto:generate:rust:cli && bun run proto:generate:rust:runtime",
"proto:generate:rust:cli": "buf generate proto --template proto/buf.gen.rust.cli.yaml --path proto/onequery/cli/v1",
"proto:generate:rust:runtime": "buf generate proto --template proto/buf.gen.rust.runtime.yaml --path proto/onequery/runtime/v1",
"postproto:generate:rust": "cargo fmt --manifest-path apps/cli/Cargo.toml -p onequery-proto-cli -p onequery-proto-runtime -- --config imports_granularity=Item",
"postproto:generate": "oxfmt packages/proto-cli/src packages/proto-runtime/src packages/proto-workflow/src",
"proto:lint": "buf lint proto",
"proto:boundaries": "bun run scripts/check-proto-boundaries.ts",
"proto:check": "bun run proto:lint && bun run proto:boundaries && bun run proto:generate && git diff --exit-code -- packages/proto-cli/src packages/proto-runtime/src packages/proto-workflow/src",
"db:generate": "bun run scripts/run-local-env-command.ts --cwd packages/db -- drizzle-kit generate",
"db:migrate": "bun run scripts/run-local-env-command.ts --cwd packages/db -- drizzle-kit migrate",
"db:push": "bun run scripts/run-local-env-command.ts --cwd packages/db -- drizzle-kit push",
"db:seed:dev": "bun run scripts/run-local-env-command.ts --cwd packages/db -- bun src/scripts/seed-dev.ts",
"db:studio": "bun run scripts/run-local-env-command.ts --cwd packages/db -- drizzle-kit studio",
"db:reset": "rm -rf .onequery/dev/pglite/onequery && bun run dev:setup && bun run db:migrate",
"clean": "find . -type d \\( -name 'node_modules' -o -name 'dist' -o -name 'dist-worker' -o -name '.turbo' -o -name 'coverage' -o -name '.cache' \\) -prune -exec rm -rf {} + 2>/dev/null; rm -rf .turbo bun.lock",
"bump": "ncu -u",
"knip": "knip"
},
"devDependencies": {
"@bufbuild/buf": "catalog:tooling",
"@bufbuild/protoc-gen-es": "catalog:tooling",
"@onequery/base": "workspace:*",
"@onequery/config": "workspace:*",
"@onequery/config-loader": "workspace:*",
"@onequery/config-node": "workspace:*",
"@onequery/self-host-runtime": "workspace:*",
"@onequery/tsconfig": "workspace:*",
"@testing-library/jest-dom": "6.9.1",
"@types/bun": "catalog:",
"@types/nodemailer": "7.0.11",
"@typescript/native-preview": "7.0.0-dev.20260318.1",
"@vitest/coverage-v8": "catalog:testing",
"eslint-plugin-astro": "1.7.0",
"eslint-plugin-turbo": "2.9.5",
"happy-dom": "20.3.3",
"knip": "6.0.5",
"lefthook": "2.1.9",
"npm-check-updates": "19.3.1",
"openclaw": "catalog:tooling",
"oxfmt": "catalog:tooling",
"oxlint": "catalog:tooling",
"oxlint-tsgolint": "0.23.0",
"turbo": "2.9.5",
"vitest": "catalog:testing"
},
"resolutions": {
"@tanstack/query-core": "5.90.20"
},
"packageManager": "bun@1.3.11"
}