-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.1 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
52
53
{
"name": "@eox/itemfilter",
"version": "1.7.1",
"type": "module",
"devDependencies": {
"@types/geojson": "^7946.0.14",
"@types/lodash.debounce": "^4.0.7",
"vite": "^6.0.3"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0"
},
"files": [
"types",
"dist",
"src"
],
"main": "./src/main.js",
"types": "./types/main.d.ts",
"typesVersions": {
"*": {
".": [
"./types/main.d.ts"
],
"src/*": [
"./types/*"
]
}
},
"scripts": {
"types:generate": "tsc --project tsconfig.build.json || true",
"prepack": "npm run types:generate",
"build": "vite build",
"watch": "vite build --watch"
},
"dependencies": {
"@eox/elements-utils": "^0.1.5",
"@floating-ui/dom": "^1.6.8",
"@turf/boolean-intersects": "^7.0.0",
"@turf/boolean-within": "^7.0.0",
"dayjs": "^1.11.9",
"fuse.js": "^7.0.0",
"lit": "^3.2.0",
"lodash.debounce": "^4.0.8",
"lodash.flatmap": "^4.5.0",
"lodash.uniq": "^4.5.0",
"toolcool-range-slider": "^4.0.27"
},
"peerDependencies": {
"@eox/map": "*"
}
}