-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 915 Bytes
/
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
{
"name": "@teritorio/map",
"version": "0.13.0",
"license": "MIT",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"module": "dist/teritorio-map.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"keywords": [
"mapbox",
"maplibre",
"teritorio",
"gis",
"vector",
"gl"
],
"scripts": {
"start": "tsdx watch --format cjs,esm,umd --name teritorio",
"build": "tsdx build --format cjs,esm,umd --name teritorio",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build --format cjs,esm,umd --name teritorio"
},
"dependencies": {},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"maplibre-gl": "3.0.1",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"mapbox-gl": "^1.10.1"
}
}