-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.36 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.36 KB
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
{
"name": "greiner-hormann",
"version": "1.5.0",
"description": "Greiner-Hormann clipping algorithm",
"main": "dist/index.umd.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.js"
},
"./leaflet": {
"types": "./dist/leaflet.d.ts",
"import": "./dist/leaflet.js",
"require": "./dist/leaflet.umd.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build && vite build --config vite.config.leaflet.ts && tsc --emitDeclarationOnly",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"deploy": "gh-pages -d demo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w8r/GreinerHormann.git"
},
"keywords": [
"polygon",
"clipping",
"intersection",
"leaflet",
"greiner",
"hormann"
],
"author": "Alexander Milevski <info@w8r.name>",
"license": "MIT",
"bugs": {
"url": "https://github.com/w8r/GreinerHormann/issues"
},
"homepage": "https://github.com/w8r/GreinerHormann",
"devDependencies": {
"@types/node": "^25.0.9",
"gh-pages": "^6.3.0",
"leaflet": "^0.7.3",
"leaflet-draw": "^0.2.3",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.17"
}
}