-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
66 lines (66 loc) · 1.82 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
59
60
61
62
63
64
65
66
{
"name": "sweepline-intersections",
"version": "2.0.0",
"type": "module",
"description": "A module to check if a polygon self-intersects using a sweepline algorithm",
"main": "dist/sweeplineIntersections.cjs",
"module": "dist/sweeplineIntersections.esm.js",
"unpkg": "dist/sweeplineIntersections.min.js",
"jsdelivr": "dist/sweeplineIntersections.min.js",
"typings": "types.d.cts",
"scripts": {
"bench": "npm run build && node test/benchmark.js",
"build": "rollup -c",
"debug": "vite serve debug",
"test": "vitest test/cases.test.js"
},
"files": [
"dist/",
"types.d.cts"
],
"author": "",
"license": "MIT",
"dependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"ava": "^6.2.0",
"tinyqueue": "^2.0.0",
"vitest": "^2.1.5"
},
"devDependencies": {
"@rollup/plugin-buble": "^1.0.3",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/pluginutils": "^5.1.3",
"@types/geojson": "7946.0.8",
"@vitejs/plugin-vue": "^5.2.0",
"2d-polygon-self-intersections": "^1.3.1",
"benchmark": "^2.1.4",
"bentley-ottmann-intersections": "0.0.1",
"cross-env": "^5.2.0",
"eslint": "^5.12.0",
"eslint-config-mourner": "^3.0.0",
"geojson-polygon-self-intersections": "^1.2.0",
"glob": "^7.1.3",
"json-loader": "^0.5.7",
"leaflet": "^1.4.0",
"load-json-file": "^5.3.0",
"nyc": "^13.1.0",
"rollup": "^4.0.0",
"vite": "^5.4.11",
"vue": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rowanwins/sweepline-intersections.git"
},
"bugs": {
"url": "https://github.com/rowanwins/sweepline-intersections/issues"
},
"keywords": [
"kinks",
"intersections",
"self-intersections",
"complex polygon"
]
}