forked from Fennec-hub/three-viewport-gizmo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.49 KB
/
package.json
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
50
51
52
53
54
{
"name": "three-viewport-gizmo",
"description": "Three Viewport Gizmo is a highly customizable standalone interactive three.js view helper controls, allowing effortless integration with popular camera libraries.",
"author": "Fennec",
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/three-viewport-gizmo.umd.cjs",
"module": "./dist/three-viewport-gizmo.js",
"exports": {
".": {
"import": "./dist/three-viewport-gizmo.js",
"require": "./dist/three-viewport-gizmo.umd.cjs"
}
},
"version": "0.1.5",
"type": "module",
"types": "./dist/three-viewport-gizmo.d.ts",
"scripts": {
"dev": "vite serve --config=vite.demo.config.js",
"build": "tsc && vite build ",
"build:demo": "tsc && vite build --config=vite.demo.config.js",
"preview": "vite preview --config=vite.demo.config.js"
},
"devDependencies": {
"@types/node": "^20.11.28",
"@types/three": "^0.162.0",
"typescript": "^5.2.2",
"vite": "^5.1.6",
"vite-plugin-dts": "^3.7.3"
},
"dependencies": {
"camera-controls": "^2.8.3",
"three": "^0.162.0",
"three-viewport-gizmo": "^0.1.0"
},
"keywords": [
"three.js",
"viewport",
"gizmo",
"helper",
"3d",
"web"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Fennec-hub/three-viewport-gizmo.git"
},
"bugs": {
"url": "https://github.com/Fennec-hub/three-viewport-gizmo/issues"
},
"homepage": "https://github.com/Fennec-hub/three-viewport-gizmo#readme"
}