-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
66 lines (66 loc) · 1.62 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "aframe-globe-component",
"version": "1.17.4",
"description": "A 3D Globe component for A-Frame.",
"type": "module",
"unpkg": "dist/aframe-globe-component.min.js",
"jsdelivr": "dist/aframe-globe-component.min.js",
"main": "dist/aframe-globe-component.mjs",
"module": "dist/aframe-globe-component.mjs",
"exports": {
"umd": "./dist/aframe-globe-component.min.js",
"default": "./dist/aframe-globe-component.mjs"
},
"sideEffects": true,
"repository": {
"type": "git",
"url": "git+https://github.com/vasturiano/aframe-globe-component.git"
},
"homepage": "https://github.com/vasturiano/aframe-globe-component#readme",
"keywords": [
"aframe",
"aframe-component",
"aframe-vr",
"vr",
"webvr",
"3d",
"globe"
],
"author": {
"name": "Vasco Asturiano <[email protected]>",
"url": "https://github.com/vasturiano"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/vasturiano/aframe-globe-component/issues"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -w -c",
"prepare": "npm run build"
},
"files": [
"dist/**/*",
"examples/**/*"
],
"dependencies": {
"three": ">=0.154",
"three-globe": "^2.41"
},
"peerDependencies": {
"aframe": "*"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"rimraf": "^6.0.1",
"rollup": "^4.36.0"
},
"engines": {
"node": ">=12"
}
}