-
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.32 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.32 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": "room-studio",
"private": true,
"version": "1.0.0",
"description": "A mobile-friendly open-source 2D/3D room planning and walkthrough tool.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/achieve0410/room-studio.git"
},
"bugs": {
"url": "https://github.com/achieve0410/room-studio/issues"
},
"homepage": "https://achieve0410.github.io/room-studio/",
"keywords": [
"floor-plan",
"interior-design",
"room-planner",
"threejs",
"webgl"
],
"type": "module",
"engines": {
"node": ">=22.12 <25"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "node --check src/main.js && node --check src/cloud-store.js && node --check src/geometry.js && node --check src/layout-tools.js && node --check src/walkthrough3d.js && node --check vite.config.js && sh -n scripts/tailscale-private-serve.sh",
"test": "node --test",
"test:browser:mobile": "npm run build && node scripts/mobile-browser-audit.mjs",
"test:browser:real-plans": "node scripts/real-plan-browser-audit.mjs",
"check": "npm run lint && npm run test && npm run build"
},
"devDependencies": {
"vite": "^8.1.5"
},
"dependencies": {
"@supabase/supabase-js": "^2.110.8",
"three": "^0.185.1"
}
}