-
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) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 2.64 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": "webxr-uiextensions-workspace",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Workspace for the Reality Collective WebXR UI Extensions - an engine-free windowing, docking and control core for WebXR spatial UI, with Meta IWSDK and Google XR Blocks adapters, devtools and demo clients.",
"workspaces": [
"packages/*",
"demos/*"
],
"overrides": {
"three": "npm:super-three@0.181.0",
"@types/three": "0.184.0"
},
"scripts": {
"build": "npm --workspace @realitycollective/webxr-uiextensions run build && npm --workspace @realitycollective/iwsdk-uiextensions run build && npm --workspace @realitycollective/xrblocks-uiextensions run build && npm --workspace @realitycollective/uix-devtools run build",
"typecheck": "npm --workspace @realitycollective/webxr-uiextensions run typecheck && npm --workspace @realitycollective/iwsdk-uiextensions run typecheck && npm --workspace @realitycollective/xrblocks-uiextensions run typecheck && npm --workspace @realitycollective/uix-devtools run typecheck && npm --workspace webxr-uiextensions-showcase run typecheck && npm --workspace uix-devtools-playground run typecheck && npm --workspace webxr-multiplatform-demo run typecheck",
"test": "vitest run --coverage",
"test:watch": "vitest",
"verify:pack": "node scripts/verify-pack.mjs",
"release": "node scripts/release.mjs",
"build:showcase": "npm run build && npm --workspace webxr-uiextensions-showcase run build",
"build:playground": "npm run build && npm --workspace uix-devtools-playground run build",
"build:demos": "npm run build && npm --workspace webxr-uiextensions-showcase run build && npm --workspace uix-devtools-playground run build && npm --workspace webxr-multiplatform-demo run build",
"dev:showcase": "npm --workspace webxr-uiextensions-showcase run dev",
"dev:playground": "npm --workspace uix-devtools-playground run dev",
"dev:multiplatform": "npm --workspace webxr-multiplatform-demo run dev",
"dev:live": "npm --workspace @realitycollective/uix-devtools run build && node packages/uix-devtools/bin/uix-dev.mjs tunnel --cwd demos/devtools-playground",
"smoke": "node scripts/smoke-deploy.mjs"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^4.1.8",
"jsdom": "^27.4.0",
"playwright-core": "^1.61.1",
"publint": "^0.3.24",
"typescript": "^5.5.0",
"vite-7": "npm:vite@^7.3.6",
"vite-8": "npm:vite@^8.0.0",
"vitest": "^4.1.8"
},
"engines": {
"node": ">=20.19.0 <21.0.0-0 || >=22.12.0 <23.0.0-0 || >=24.0.0"
},
"allowScripts": {
"esbuild": true
}
}