-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.59 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
{
"name": "patchpit",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "pnpm@10.33.2",
"pnpm": {
"overrides": {
"@tarstate/core": "file:vendor/tarstate/tarstate-core-0.2.0.tgz"
}
},
"engines": {
"node": ">=24.12.0"
},
"scripts": {
"build": "vite build",
"dev": "vite",
"lint": "oxlint apps packages scripts src vite.config.ts --deny-warnings --type-aware",
"test": "node --import ./scripts/register-ts-loader.mjs --test 'packages/**/*.test.ts' 'src/**/*.test.ts'",
"test:browser": "node --import ./scripts/register-ts-loader.mjs scripts/test-sandbox-compat.mjs",
"test:dev": "node --import ./scripts/register-ts-loader.mjs scripts/test-prototype-preview.mjs --dev",
"test:preview": "node --import ./scripts/register-ts-loader.mjs scripts/test-prototype-preview.mjs",
"preview": "vite preview",
"typecheck": "tsc"
},
"dependencies": {
"@patchpit/automerge-fs": "workspace:*",
"@patchpit/fs": "workspace:*",
"@patchpit/sandbox": "workspace:*",
"react": "catalog:",
"react-dom": "catalog:"
},
"devDependencies": {
"@patchpit/sandbox-fs": "workspace:*",
"@babel/core": "catalog:",
"@rolldown/plugin-babel": "catalog:",
"@types/babel__core": "catalog:",
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@vitejs/plugin-react": "catalog:",
"babel-plugin-react-compiler": "catalog:",
"oxlint": "catalog:",
"oxlint-tsgolint": "catalog:",
"playwright-core": "catalog:",
"typescript": "catalog:",
"vite": "catalog:"
}
}