-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 811 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 811 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
33
34
35
36
37
{
"name": "floorplan-2d-to-3d",
"version": "1.0.0",
"description": "A tool to convert 2D floorplans into 3D scenes",
"main": "index.html",
"type": "module",
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --write .",
"doc": "jsdoc -c jsdoc.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"floorplan",
"2d",
"3d",
"conversion",
"scene"
],
"author": "Marco Franzon",
"license": "MIT",
"dependencies": {
"bootstrap": "^5.3.7",
"paper": "^0.12.18",
"three": "^0.179.1"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"eslint": "^9.33.0",
"globals": "^16.3.0",
"jsdoc": "^4.0.4",
"prettier": "^3.6.2",
"vite": "^7.1.1"
}
}