-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 848 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 848 Bytes
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
{
"name": "rdk",
"description": "Reality Development Kit, a unified React-first XR engine",
"private": true,
"type": "module",
"packageManager": "bun@1.3.11",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"check": "biome check --diagnostic-level=error packages",
"format": "turbo format",
"lint": "turbo lint",
"clean": "turbo clean",
"knip": "knip-bun --cache --tags=-knipignore",
"test": "turbo test",
"release": "bun run --cwd packages/rdk build && changeset publish",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.29.8",
"husky": "^9.1.7",
"knip": "^6.0.0",
"turbo": "^2.7.3",
"typescript": "^5.9.3"
}
}