-
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.01 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.01 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": "3d-glasses-viewer",
"version": "1.0.0",
"description": "Interactive 3D glasses viewer built with Three.js featuring customizable Ray-Ban models",
"type": "module",
"main": "src/3dGlass.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src --ext .js",
"format": "prettier --write src/**/*.{js,html,css}"
},
"keywords": [
"threejs",
"3d",
"glasses",
"rayban",
"webgl",
"interactive",
"3d-model"
],
"author": "Dev Amir",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/3d-glasses-viewer.git"
},
"bugs": {
"url": "https://github.com/yourusername/3d-glasses-viewer/issues"
},
"homepage": "https://github.com/yourusername/3d-glasses-viewer#readme",
"devDependencies": {
"vite": "^5.0.0",
"eslint": "^8.55.0",
"prettier": "^3.1.0"
},
"dependencies": {
"gsap": "^3.12.2",
"lil-gui": "^0.19.2",
"three": "^0.158.0"
}
}