-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.01 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
{
"name": "threejs-navigator-gizmo",
"version": "0.0.6",
"description": "A 3D navigator gizmo for ThreeJS",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc -m ES6 --outDir ./dist/esm",
"build:cjs": "tsc -m commonjs --outDir ./dist/cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nieyuyao/threejs-navigator-gizmo.git"
},
"keywords": [
"threejs",
"3d",
"rotate",
"navigator",
"gizmo",
"viewhelper",
"trackballcontrol",
"blender",
"three",
"orbit"
],
"author": "nieyuyao",
"license": "MIT",
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/nieyuyao/threejs-navigator-gizmo/issues"
},
"homepage": "https://github.com/nieyuyao/threejs-navigator-gizmo#readme",
"peerDependencies": {
"three": ">=0.150.0"
},
"devDependencies": {
"@types/three": "^0.150.0",
"typescript": "^5.4.5"
}
}