-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 977 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": "@eox/map",
"version": "1.18.0",
"type": "module",
"dependencies": {
"@eox/elements-utils": "^0.1.2",
"flatgeobuf": "^3.35.0",
"lit": "^3.2.0",
"ol": "^10.2.0",
"ol-stac": "^1.0.0-beta.10",
"proj4": "^2.9.2"
},
"devDependencies": {
"@types/proj4": "^2.5.4",
"vite": "^6.0.3"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0"
},
"files": [
"types",
"dist",
"src"
],
"main": "./src/main.js",
"types": "./types/src/main.d.ts",
"typesVersions": {
"*": {
".": [
"./types/src/main.d.ts"
],
"src/*": [
"./types/src/*"
]
}
},
"scripts": {
"prepack": "tsc --project tsconfig.build.json || true",
"build": "vite build --config vite.config.advancedLayersAndSources.js && vite build --config vite.config.js",
"watch": "vite build --config vite.config.advancedLayersAndSources.js && vite build --config vite.config.js --watch"
}
}