forked from SINTEF-9012/PruneCluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.4 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
54
55
56
57
58
{
"name": "@wogwonsociety/leaflet-clustering",
"description": "Extendable & easy-to-use Leaflet clustering plugin delivering high performance on any data set",
"version": "1.0.2",
"type": "module",
"author": {
"name": "Wogwon Society",
"email": "[email protected]",
"url:": "https://wogwon.com"
},
"repository": "https://github.com/WogwonSociety/leaflet-clustering",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"browser": "./dist/index.iife.js",
"types": "./dist/index.d.ts",
"exports": {
"./*.js": "./dist/*.js",
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs",
"browser": "./dist/index.iife.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "vite build",
"dev": "bunx vite",
"example": "bun run build:example",
"test": "bun test",
"serve": "vite preview"
},
"dependencies": {
"leaflet": "^1.9.4",
"rollup-plugin-terser": "^7.0.2"
},
"peerDependencies": {
"leaflet": "^1.9.4"
},
"devDependencies": {
"@happy-dom/global-registrator": "^15.7.4",
"@types/leaflet": "^1.9.12",
"@vitejs/plugin-vue": "^5.1.4",
"terser": "^5.34.1",
"typescript": "^5.6.3",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.4"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16",
"bun": ">=1.0.0"
}
}