-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.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
{
"name": "mapclay",
"description": "Create interactive maps by simple options",
"version": "0.9.3",
"license": "MIT",
"type": "module",
"main": "index.mjs",
"module": "index.mjs",
"sideEffects": false,
"files": [
"index.mjs",
"dist/**",
"src/**",
"assets/**"
],
"keywords": [
"map",
"yaml"
],
"scripts": {
"watch": "npx rollup -c scripts/rollup.config.js -w",
"build": "npx rollup -c scripts/rollup.config.js",
"lint": "standard --fix",
"docs": "jsdoc -c scripts/jsdoc.conf src/;"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"globals": "^15.9.0",
"rollup": "^4.21.2"
},
"dependencies": {
"js-yaml": "^4.1.0",
"leaflet": "^1.9.4",
"maplibre-gl": "^4.6.0",
"maplibre-gl-vector-text-protocol": "github:jimmyrocks/maplibre-gl-vector-text-protocol",
"ol": "^10.2.1",
"proj4": "^2.12.0",
"terra-draw": "1.0.0-beta.1"
},
"author": "Hsiehg Chin Fan <[email protected]>",
"homepage": "https://outdoorsafetylab.org/",
"repository": {
"type": "git",
"url": "https://github.com/outdoorsafetylab/mapclay"
},
"prettier": {
"arrowParens": "avoid"
}
}