-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1015 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1015 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": "virtuabooth",
"version": "1.0.0",
"description": "VirtuaBooth — an interactive three.js product showroom (Raspberry Pi 5 configurator).",
"type": "module",
"license": "MIT",
"author": "Carlos Santana <csantanad@gmail.com>",
"homepage": "https://ophiocus.github.io",
"repository": {
"type": "git",
"url": "https://github.com/ophiocus/VirtuaBooth.git"
},
"scripts": {
"dev": "vite",
"build:app": "vite build",
"docs": "jsdoc -c jsdoc.conf",
"build": "vite build && jsdoc -c jsdoc.conf",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@tweenjs/tween.js": "^25.0.0",
"three": "^0.184.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.0.0",
"jsdoc": "^4.0.5",
"prettier": "^3.3.0",
"vite": "^6.4.2"
}
}