-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 984 Bytes
/
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
{
"name": "four-points-controls",
"version": "0.1.1",
"description": "Orients a 3D object using four points in camera space.",
"type": "module",
"module": "./build/fpc.js",
"exports": {
".": {
"import": "./build/fpc.js"
}
},
"scripts": {
"build-three": "rollup src/fpc.js --file build/fpc.js --external three --format esm --plugin @rollup/plugin-node-resolve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/makc/four-points-controls.git"
},
"files": [
"build",
"src",
"package.json",
"README.md"
],
"keywords": [
"three.js"
],
"author": "makc",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/makc/four-points-controls/issues"
},
"homepage": "https://github.com/makc/four-points-controls#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"rollup": "^3.20.0",
"three": "^0.150.1"
},
"dependencies": {
"cdk4": "^0.1.3"
}
}