-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 988 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
44
45
46
{
"name": "mapserver-wasm",
"version": "2.2.0",
"description": "WebAssembly version of MapServer with a dispatchRequest interface",
"author": "Paul Lange <[email protected]>",
"license": "MIT",
"type": "module",
"main": "dist/mapserver.js",
"types": "index.d.ts",
"scripts": {
"test": "vitest"
},
"repository": {
"type": "git",
"url": "[email protected]:codeart1st/mapserver-wasm.git"
},
"files": [
"dist/mapserver.*",
"index.d.ts"
],
"keywords": [
"wms",
"webassembly",
"wasm",
"geopackage",
"mapserver",
"wfs",
"gpkg",
"offlinecache"
],
"engines": {
"node": ">=17"
},
"dependencies": {
"@types/emscripten": "^1.39.13"
},
"devDependencies": {
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.3.5",
"jest-file-snapshot": "0.7.0",
"semantic-release": "24.1.1",
"sqlite3": "5.1.7",
"vitest": "2.1.1",
"vitest-fetch-mock": "0.3.0"
}
}