-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.68 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": "@reactunity/monorepo",
"private": true,
"license": "MIT",
"author": {
"name": "Gokhan Kurt",
"email": "krtgkn@gmail.com",
"url": "https://github.com/KurtGokhan"
},
"packageManager": "pnpm@11.17.0",
"engines": {
"node": ">=26"
},
"scripts": {
"lint": "biome lint",
"format": "biome format",
"check": "biome check",
"build": "pnpm -r --filter \"./packages/*\" run build",
"//typecheck": "Unfiltered `-r` on purpose: it reaches the react-unity-scripts apps too, not just packages/*. Nothing else type checks.",
"typecheck": "pnpm -r run typecheck",
"prepare": "husky",
"tegami": "node scripts/tegami.mts",
"//build:test-transformer": "Rebuilds the Sucrase bundle the Unity test runner evaluates inside QuickJS. Commit the result.",
"build:test-transformer": "node scripts/test-transformer/build.mts",
"//unity": "Headless Unity driver. `pnpm unity help` for the commands; the Editor bridge is separate (see .claude/skills/unity).",
"unity": "node scripts/unity/cli.mts",
"test:unity": "node scripts/unity/cli.mts test tests",
"//kitchen-sink": "Exports kitchen-sink/ as a standalone project, the way release-kitchen-sink.yml publishes it. Takes an output directory.",
"kitchen-sink": "node scripts/kitchen-sink/prepare.mts"
},
"devDependencies": {
"@biomejs/biome": "2.5.6",
"@types/node": "^26.1.2",
"@types/react": "^19.2.17",
"ajv": "^8.20.0",
"esbuild": "^0.28.1",
"husky": "^9.1.7",
"lint-staged": "^17.2.0",
"react": "^19.2.8",
"rimraf": "^6.1.3",
"sucrase": "^3.35.1",
"tsx": "^4.23.1",
"typescript": "^7.0.2",
"vite": "^8.1.5",
"tegami": "^1.2.7"
}
}