-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.49 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
{
"name": "mapbox-pmtiles",
"version": "1.0.53",
"type": "module",
"description": "A custom source to add PmTiles support to mapbox gl js",
"scripts": {
"test": "vitest",
"build": "vite build && cp ./dist/mapbox-pmtiles.umd.cjs ./dist/mapbox-pmtiles.umd.js",
"docs": "cd docs-src && npm ci && npm run build",
"publish:patch": "npm version patch",
"publish:minor": "npm version minor",
"publish:major": "npm version major",
"preversion": "npm ci && npm run test",
"version": "npm run build && npm run docs && git add -A dist docs",
"postversion": "echo postversion"
},
"author": {
"name": "Majid Hojati",
"email": "[email protected]",
"url": "https://github.com/am2222"
},
"maintainers": [
{
"name": "Majid Hojati",
"email": "[email protected]",
"url": "https://github.com/am2222"
}
],
"engines": {
"node": ">=18.x.x <=22.x.x",
"npm": ">=10.0.0"
},
"keywords": [],
"license": "MIT",
"homepage": "https://github.com/am2222/mapbox-pmtiles",
"devDependencies": {
"docusaurus-plugin-typedoc": "^0.22.0",
"terser": "^5.29.2",
"typedoc": "^0.25.11",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3",
"vite": "^5.1.6",
"vitest": "^1.3.1"
},
"main": "./src/index.ts",
"files": [
"dist/",
"src/"
],
"dependencies": {
"@types/mapbox-gl": "^2.7.21",
"mapbox-gl": "^3.1.2",
"pmtiles": "^3.0.3"
},
"jsdelivr": "dist/mapbox-pmtiles.umd.js"
}