forked from Matico-Platform/deck.gl-pmtiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.25 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": "@maticoapp/deck.gl-pmtiles",
"author": "Dylan Halpern",
"packageManager": "[email protected]",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"main": "dist/index.js",
"version": "0.0.33",
"license": "MIT",
"private": true,
"workspaces": [
"example",
"deck.gl-pmtiles"
],
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@types/ms": "^0.7.30",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"babel-loader": "^8.2.5",
"concurrently": "^7.3.0",
"deck.gl": "^8.8.9",
"esbuild": "^0.15.7",
"eslint": "^8.23.0",
"eslint-plugin-react": "latest",
"geojson": "^0.5.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^4.10.1",
"tslib": "^2.4.0"
},
"dependencies": {
"typescript": "^4.8.2",
"deck.gl": "^8.8.9",
"pmtiles": "^2.4.0"
},
"scripts": {
"lint": "eslint --fix 'src/**/*.ts'",
"test": "echo \"Error: no test specified\" && exit 1",
"example": "cd example && yarn dev",
"dev": "concurrently \"yarn build-dev\" \"yarn workspace example-pmtiles dev\"",
"build": "tsc && yarn pre-build && rollup -c",
"pre-build": "tsc && yarn build-worker && yarn build-bundle",
"build-bundle": "esbuild src/pmt-loader/bundle.js --bundle --outfile=dist/dist.min.js",
"build-worker": "esbuild src/pmt-loader/workers/pmt-worker.ts --bundle --outfile=dist/pmt-worker.js --define:__VERSION__=\\\"$npm_package_version\\\"",
"build-dev": "tsc && yarn pre-build && rollup -c",
"type-check": "tsc --noEmit"
},
"description": "This repo provides a typed Deck.gl layer and loader for PMTiles data. PMTiles data provides a serverless and compact way to store tile geospatial data. Combined with Deck.gl's rendering, this provides a flexible and powerful way to cheaply manage geospatial data.",
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Matico-Platform/deck.gl-pmtiles.git"
},
"keywords": [
"pmtiles",
"geo",
"deck.gl"
],
"bugs": {
"url": "https://github.com/Matico-Platform/deck.gl-pmtiles/issues"
},
"homepage": "https://github.com/Matico-Platform/deck.gl-pmtiles#readme"
}