-
-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.16 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.16 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "martinez-polygon-clipping",
"version": "0.8.1",
"description": "Martinez polygon clipping algorithm, does boolean operation on polygons (multipolygons, polygons with holes etc): intersection, union, difference, xor",
"main": "dist/martinez.cjs",
"browser": "dist/martinez.js",
"module": "dist/martinez.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/martinez.js",
"require": "./dist/martinez.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/"
],
"scripts": {
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"bench": "vitest bench",
"lint": "oxlint src test bench demo",
"typecheck": "tsc --noEmit",
"dev": "vite --mode demo",
"dev:demo": "vite --mode demo",
"build": "vite build",
"build:demo": "vite build --mode demo",
"preview": "vite preview",
"preview:demo": "vite preview --outDir dist/demo",
"deploy:demo": "npm run build:demo && gh-pages --nojekyll -d dist/demo -t -m 'Deploy demo'",
"prepublishOnly": "npm run lint && npm run test:run && npm run build"
},
"keywords": [
"polygon",
"clipping",
"boolean",
"intersection",
"union",
"xor",
"geometry",
"martinez"
],
"repository": {
"url": "git+https://github.com/w8r/martinez.git",
"type": "git"
},
"homepage": "https://github.com/w8r/martinez",
"author": "Alex Milevski <info@w8r.name>",
"license": "MIT",
"devDependencies": {
"@turf/union": "^4.6.0",
"@types/geojson": "^1.0.2",
"@types/glob": "^8.1.0",
"@types/jsts": "0.17.24",
"@types/leaflet": "1.9.21",
"@types/node": "^20.0.0",
"@vitest/ui": "^1.0.0",
"benchmark": "^2.1.4",
"geojson-project": "^1.0.0",
"gh-pages": "^6.1.1",
"glob": "^11.0.3",
"json-stringify-pretty-compact": "^2.0.0",
"leaflet": "1.9.4",
"leaflet-editable": "^1.3.2",
"oxlint": "^0.9.10",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.0.0",
"vitest": "^1.0.0"
},
"dependencies": {
"robust-predicates": "^2.0.4",
"splaytree": "^0.1.4",
"tinyqueue": "3.0.0"
}
}