forked from pingdotgg/t3code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.92 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
{
"name": "@t3tools/monorepo",
"private": true,
"type": "module",
"scripts": {
"prepare": "effect-tsgo patch",
"dev": "node scripts/dev-runner.ts dev",
"dev:server": "node scripts/dev-runner.ts dev:server",
"dev:web": "node scripts/dev-runner.ts dev:web",
"dev:debug": "NODE_OPTIONS=--inspect=127.0.0.1:9232 node scripts/dev-runner.ts dev",
"dev:debug:brk": "NODE_OPTIONS='--inspect=127.0.0.1:9232 --inspect-brk' node scripts/dev-runner.ts dev",
"start": "vp run --filter t3 start",
"build": "vp run --filter './apps/*' --filter './packages/*' --filter './oxlint-plugin-t3code' --filter './scripts' build",
"typecheck": "vp run -r --concurrency-limit 2 typecheck",
"tc": "vp run -r --concurrency-limit 2 typecheck",
"lint": "vp lint --report-unused-disable-directives",
"lint:mobile": "node scripts/mobile-native-static-check.ts",
"test": "vp run -r test",
"fmt": "vp fmt",
"fmt:check": "vp fmt --check",
"build:contracts": "vp run --filter @t3tools/contracts build",
"release:smoke": "node scripts/release-smoke.ts",
"dist:linux": "node scripts/package-linux.ts",
"dist:linux:deb": "node scripts/package-linux.ts --format deb",
"dist:linux:rpm": "node scripts/package-linux.ts --format rpm",
"clean": "rm -rf node_modules apps/*/node_modules packages/*/node_modules apps/*/dist packages/*/dist .vite-plus apps/*/.vite-plus packages/*/.vite-plus",
"sync:vscode-icons": "node scripts/sync-vscode-icons.mjs",
"sync:repos": "node scripts/sync-reference-repos.ts"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "7.28.6",
"@effect/tsgo": "catalog:",
"@oxlint/plugins": "^1.63.0",
"@types/node": "catalog:",
"@typescript/native-preview": "catalog:",
"vite-plus": "catalog:"
},
"engines": {
"node": "^24.13.1"
},
"packageManager": "pnpm@10.24.0",
"msw": {
"workerDirectory": [
"apps/web/public"
]
}
}