-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.73 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
{
"name": "patchpit",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "pnpm@10.33.2",
"engines": {
"node": ">=24.12.0"
},
"scripts": {
"build": "vite build --config vite.config.ts --logLevel warn",
"build:pages": "vite build --config vite.config.ts --logLevel warn --base=/patchpit/",
"dev": "vite --config vite.config.ts",
"fixtures:seed-app-packages": "node scripts/generate-seed-app-packages.mjs",
"fixtures:check": "pnpm fixtures:seed && pnpm fixtures:seed-app-packages && git diff --exit-code -- packages/system/src/fixtures/seed.ts packages/system/src/fixtures/seed-app-packages.ts",
"fixtures:seed": "node scripts/generate-seed-fixture.mjs",
"lint": "oxlint . --ignore-pattern archive/** --deny-warnings --type-aware",
"smoke": "pnpm build && node scripts/smoke.mjs",
"smoke:pages": "pnpm build:pages && node scripts/smoke.mjs --base=/patchpit/",
"test": "node --import ./scripts/register-ts-loader.mjs --test apps/shell/src/runtime/bootstrap-runtime.test.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"devDependencies": {
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@vitejs/plugin-react": "catalog:",
"oxlint": "catalog:",
"oxlint-tsgolint": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"vite-plugin-top-level-await": "catalog:",
"vite-plugin-wasm": "catalog:"
},
"pnpm": {
"overrides": {
"@tarstate/core": "git+https://github.com/neftaly/tarstate.git#1fb2d130ef6cb01532765962b271f74b5aea82b6&path:/packages/core"
},
"patchedDependencies": {
"@automerge/automerge-repo@2.5.6": "patches/@automerge__automerge-repo@2.5.6.patch"
}
}
}