-
Notifications
You must be signed in to change notification settings - Fork 121
/
package.json
63 lines (63 loc) · 1.68 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
{
"name": "geo-three",
"version": "0.1.15",
"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/Main.d.ts",
"module": "build/geo-three.module.js",
"type": "module",
"exports": {
".": {
"import": "./build/geo-three.module.js",
"require": "./build/geo-three.cjs",
"types": "./build/Main.d.ts"
},
"./source/*": "./source/*"
},
"repository": {
"type": "git",
"url": "https://github.com/tentone/geothree.git"
},
"scripts": {
"start": "npm run examples && http-server examples",
"examples": "rollup -c rollup.example.js",
"build": "rollup -c rollup.config.js",
"docs": "typedoc --out docs ./source/Main.ts",
"pub": "npm run build && npm run docs && npm run examples && npm publish --access public .",
"lint": "eslint --ext .ts .",
"lint-fix": "eslint --ext .ts --fix ."
},
"sideEffects": false,
"keywords": [
"maps",
"tiles",
"geographic",
"three.js",
"three",
"web",
"map",
"gps"
],
"author": "Tentone",
"license": "MIT",
"peerDependencies": {
"three": ">0.120.0"
},
"devDependencies": {
"@rollup/plugin-strip": "3.0.2",
"@rollup/plugin-typescript": "10.0.1",
"@rollup/plugin-node-resolve": "15.0.1",
"@types/offscreencanvas": "2019.7.0",
"@types/three": "^0.160.0",
"@typescript-eslint/eslint-plugin": "5.47.0",
"@typescript-eslint/parser": "5.47.0",
"eslint": "8.30.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-tsdoc": "0.2.17",
"eslint-plugin-typescript": "0.14.0",
"rollup": "3.29.5",
"three": "^0.160.0",
"typedoc": "0.23.23",
"typescript": "4.9.4",
"http-server": "14.1.1"
}
}