-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (31 loc) · 1.09 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
{
"name" : "manipulator3d",
"version" : "0.0.8",
"author" : "Pedro Sousa ( Vor @ SketchPunk Labs )",
"description" : "3D Manipulator Gizmo for Threejs",
"keywords" : [ "threejs", "gizmo", "ui", "3d" ],
"license" : "MIT",
"homepage" : "https://github.com/sketchpunklabs/manipulator3d#readme",
"repository" : { "type": "git", "url": "git+https://github.com/sketchpunklabs/manipulator3d.git" },
"bugs" : { "url": "https://github.com/sketchpunklabs/manipulator3d/issues" },
"files" : [ "dist" ],
"main" : "./dist/manipulator3d.cjs.js",
"module" : "./dist/manipulator3d.es.js",
"exports": {
".": {
"import" : "./dist/manipulator3d.es.js",
"require" : "./dist/manipulator3d.cjs.js"
}
},
"scripts": {
"dev" : "vite",
"build" : "vite build",
"publish" : "npm publish --access public"
},
"peerDependencies": {
"three" : "^0.138.2"
},
"devDependencies": {
"vite": "^2.8.6"
}
}