forked from reearth/cesium-mvt-imagery-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.53 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
{
"name": "@reearth/cesium-mvt-imagery-provider",
"version": "1.6.0",
"description": "Custom ImageryProvider for Mapbox Vector Tiles (extended for Re:Earth)",
"source": "./src/index.ts",
"main": "./dist/cesium-mvt-imagery-provider.umd.js",
"module": "./dist/cesium-mvt-imagery-provider.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/cesium-mvt-imagery-provider.mjs",
"require": "./dist/cesium-mvt-imagery-provider.umd.js"
}
},
"repository": "https://github.com/reearth/cesium-mvt-imagery-provider.git",
"license": "MIT",
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"type": "tsc",
"lint": "eslint .",
"fmt": "eslint --fix .",
"link": "yarn link && yarn link cesium-mvt-imagery-provider"
},
"files": [
"src",
"dist"
],
"engines": {
"node": ">=16"
},
"peerDependencies": {
"cesium": "1.x"
},
"devDependencies": {
"@types/mapbox__vector-tile": "1.3.0",
"cesium": "1.103.0",
"eslint": "8.35.0",
"eslint-config-reearth": "0.2.1",
"prettier": "2.8.4",
"ts-node": "10.9.1",
"typescript": "4.9.5",
"vite": "4.1.4",
"vite-plugin-dts": "2.0.2"
},
"dependencies": {
"@mapbox/vector-tile": "1.3.1",
"@turf/turf": "6.5.0",
"@types/jsonpath-plus": "5.0.5",
"@types/lodash-es": "4.17.12",
"@types/offscreencanvas": "2019.7.3",
"jsonpath-plus": "8.1.0",
"lodash-es": "4.17.21",
"lru-cache": "10.2.0",
"pbf": "3.2.1",
"threads": "1.7.0"
}
}