forked from tentone/geo-three
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "bmap-geo-three",
"version": "0.0.22",
"description": "geo-three is library for tile based geographic map layers in with three.js supporting selective loading/unloading of real-time generated 3D tiles",
"main": "build/geo-three.js",
"module": "build/geo-three.module.js",
"repository": {
"type": "git",
"url": "https://github.com/huiyan-fe/geo-three.git"
},
"scripts": {
"start": "rollup -c rollup.dev.js --watch",
"build": "rollup -c rollup.config.js",
"docs": "typedoc --out docs source",
"pub": "npm publish --access public .",
"lint": "eslint --ext .ts .",
"lint-fix": "eslint --ext .ts --fix ."
},
"keywords": [
"maps",
"tiles",
"geographic",
"three.js",
"three",
"web",
"map",
"gps"
],
"author": "Tentone",
"license": "MIT",
"peerDependencies": {
"three": ">0.120.0"
},
"devDependencies": {
"@rollup/plugin-strip": "~2.1.0",
"@rollup/plugin-typescript": "~8.3.1",
"@types/offscreencanvas": "~2019.6.4",
"@types/node": "~14.6.2",
"@types/three": "^0.137.0",
"@typescript-eslint/eslint-plugin": "~5.12.1",
"@typescript-eslint/parser": "~5.12.1",
"eslint": "~8.9.0",
"eslint-plugin-import": "~2.25.4",
"eslint-plugin-tsdoc": "~0.2.14",
"eslint-plugin-typescript": "~0.14.0",
"rollup": "~2.68.0",
"rollup-plugin-livereload": "~2.0.5",
"rollup-plugin-serve": "~1.1.0",
"three": "^0.137.0",
"typedoc": "~0.22.12",
"typescript": "~4.5.5"
},
"dependencies": {}
}