-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 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
{
"name": "@kalisio/leaflet-pmtiles",
"version": "0.0.1",
"description": "Toolset to visualise PMTiles more easily in Leaflet.js",
"main": "./src/index.js",
"type": "module",
"scripts": {
"demo": "nodemon --watch demon --exec 'http-server -p 8080 demo'",
"dev": "npm run dist && onchange 'src/**/*.*' -- npm run dist",
"build": "esbuild src/index.js --bundle --target=es2015 --outfile=dist/leaflet-pmtiles.js --global-name=pmtiles",
"build-min": "esbuild src/index.js --bundle --target=es2015 --minify --outfile=dist/leaflet-pmtiles.min.js --global-name=pmtiles",
"build-module": "esbuild src/index.js --bundle --target=es2015 --outfile=dist/leaflet-pmtiles.module.js --format=esm",
"dist": "npm run build && npm run build-min && npm run build-module && shx cp dist/leaflet-pmtiles*.js demo",
"publish": "git push origin HEAD --tags && git push origin",
"release:patch": "npm version patch && npm publish --access public",
"release:minor": "npm version minor && npm publish --access public",
"release:major": "npm version major && npm publish --access public"
},
"repository": {
"type": "git",
"url": "https://github.com/kalisio/leaflet-pmtiles.git"
},
"keywords": [
"pmtiles",
"leaflet",
"mbtiles",
"vectortiles"
],
"contributors": [
{
"name": "Kalisio",
"email": "[email protected]",
"url": "https://github.com/kalisio"
}
],
"license": "public domain",
"bugs": {
"url": "https://github.com/kalisio/leaflet-pmtiles/issues"
},
"homepage": "https://github.com/kalisio/leaflet-pmtiles",
"devDependencies": {
"esbuild": "^0.15.11",
"nodemon": "^3.1.0",
"onchange": "^7.1.0",
"shx": "^0.3.4"
},
"dependencies": {
"protomaps-leaflet": "^3.1.1"
}
}