-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.5 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.5 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
44
45
46
47
48
49
{
"name": "aframe-hemisphere-controls",
"version": "0.1.1",
"description": "a simple \"orbit-controls\" alternative for A-Frame",
"type": "module",
"main": "./dist/aframe-hemisphere-controls.js",
"module": "./dist/aframe-hemisphere-controls.esm.js",
"svelte": "./dist/aframe-hemisphere-controls.esm.js",
"types": "./dist/aframe-hemisphere-controls.d.ts",
"exports": {
".": {
"require": "./dist/aframe-hemisphere-controls.js",
"import": "./dist/aframe-hemisphere-controls.esm.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "rimraf dist && rollup -c rollup.config.js && tsc && rm -r dist/src && mv src/*.d.ts dist && rm src/aframe-hemisphere-controls.js*",
"agadoo": "agadoo",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rozek/aframe-hemisphere-controls.git"
},
"keywords": [
"javascript",
"typescript",
"a-frame",
"three-js",
"threejs",
"orbit-controls"
],
"author": "Andreas Rozek <[email protected]> (https://www.rozek.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rozek/aframe-hemisphere-controls/issues"
},
"homepage": "https://github.com/rozek/aframe-hemisphere-controls#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.1",
"agadoo": "^2.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.52.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.3.3",
"aframe": "^1.3.0"
}
}