forked from MediaComem/geocity-wc-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 911 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
{
"name": "geocity-wc-map",
"private": true,
"version": "0.0.0",
"type": "module",
"main": "dist/geocity-wc-map.es.js",
"exports": {
".": "./dist/geocity-wc-map.es.js"
},
"types": "types/geocity-wc-map.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"dev": "vite",
"dev-expose": "vite --host -m expose",
"build": "tsc && vite build",
"demo": "npm run build && shx cp dist/geocity-wc-map.js demo/lib && vite",
"deploy": "gh-pages -d dist",
"test": "vitest run"
},
"dependencies": {
"lit": "^2.4.0",
"ol": "^7.1.0",
"proj4": "^2.8.0",
"typedoc": "^0.23.21",
"wkt": "^0.1.1"
},
"devDependencies": {
"@types/proj4": "^2.5.2",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"gh-pages": "^4.0.0",
"happy-dom": "^7.7.0",
"shx": "^0.3.4",
"typescript": "^4.6.4",
"vite": "^3.2.3",
"vitest": "^0.25.3"
}
}