This repository has been archived by the owner on Mar 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
57 lines (57 loc) · 1.76 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
{
"name": "@ubilabs/threejs-overlay-view",
"version": "0.7.1",
"description": "A wrapper for the Google Maps WebGLOverlayView that takes care of the integration between three.js and the Google Maps JavaScript API. It lets you create a Google Maps overlays directly with three.js.",
"keywords": [
"google maps",
"maps",
"three",
"threejs",
"webgl"
],
"author": "ubilabs GmbH <[email protected]>",
"contributors": [
"Martin Schuhfuss <[email protected]>",
"Andreas Kofler <[email protected]>",
"Martin Kleppe <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ubilabs/threejs-overlay-view.git"
},
"bugs": {
"url": "https://github.com/ubilabs/threejs-overlay-view/issues"
},
"homepage": "https://github.com/ubilabs/threejs-overlay-view#readme",
"license": "MIT",
"type": "module",
"source": "src/index.ts",
"exports": "./dist/threejs-overlay-view.modern.js",
"main": "./dist/threejs-overlay-view.js",
"types": "./dist/threejs-overlay-view.d.ts",
"module": "./dist/threejs-overlay-view.module.js",
"unpkg": "./dist/threejs-overlay-view.umd.js",
"workspaces": [
"./examples"
],
"scripts": {
"test": "tsc -p tsconfig.json --noEmit && prettier -c './src/**/*.{ts,js}' && npm run test --workspaces",
"prettier": "prettier --write './src/**/*.{ts,js}'",
"start": "npm start --workspace examples",
"build": "microbundle",
"prepack": "npm install && npm run build"
},
"peerDependencies": {
"three": ">=0.125.0"
},
"devDependencies": {
"@types/google.maps": "^3.48.0",
"@types/three": "^0.128.0",
"microbundle": "^0.13.0",
"prettier": "^2.3.0",
"typescript": "^4.2.4"
},
"publishConfig": {
"access": "public"
}
}