-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.44 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
{
"name": "@maptiler/leaflet-maptilersdk",
"version": "2.0.0",
"description": "Vector tiles basemap plugin for Leaflet - multi-lingual basemaps using MapTiler SDK",
"module": "dist/leaflet-maptilersdk.js",
"type": "module",
"exports": {
".": {
"import": "./dist/leaflet-maptilersdk.js"
}
},
"author": "MapTiler",
"keywords": [
"maptiler",
"plugin",
"leaflet",
"layer"
],
"scripts": {
"format:fix": "prettier --write \"src/**/*.js\"",
"lint:fix": "eslint --fix \"src/**/*.js\"",
"format": "prettier -c \"src/**/*.js\"",
"lint": "eslint \"src/**/*.js\"",
"make": "npm run format:fix && npm run lint:fix && npm run build",
"build": "npm run build-es && npm run build-umd",
"build-dev": "NODE_ENV=development npm run build-es && NODE_ENV=development npm run build-umd",
"build-umd": "vite build -c vite.config-umd.js",
"build-es": "vite build -c vite.config-es.js",
"dev:umd": "NODE_ENV=development vite build -w -c vite.config-umd.js",
"dev:es": "NODE_ENV=development vite build -w -c vite.config-ues.js"
},
"repository": {
"type": "git",
"url": "https://github.com/maptiler/leaflet-maptilersdk.git"
},
"license": "",
"devDependencies": {
"eslint": "^8.44.0",
"eslint-plugin-import": "^2.28.0",
"prettier": "^2.8.8",
"terser": "^5.19.2",
"vite": "^4.4.8"
},
"dependencies": {
"leaflet": "^1.9.4",
"@maptiler/sdk": "^1.2.0"
}
}