planefill 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "planefill",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "Coverage path planning for GeoJSON polygons — boustrophedon, Hilbert, spiral, concentric rings, and multi-agent division strategies",
6
+ "keywords": [
7
+ "coverage-path-planning",
8
+ "path-planning",
9
+ "geojson",
10
+ "polygon",
11
+ "boustrophedon",
12
+ "hilbert-curve",
13
+ "lawnmower",
14
+ "drone",
15
+ "robotics",
16
+ "uav",
17
+ "spatial",
18
+ "multi-agent",
19
+ "turf",
20
+ "waypoints"
21
+ ],
22
+ "main": "./dist/index.cjs",
23
+ "module": "./dist/index.mjs",
24
+ "types": "./dist/index.d.ts",
25
+ "exports": {
26
+ ".": {
27
+ "import": "./dist/index.mjs",
28
+ "require": "./dist/index.cjs",
29
+ "types": "./dist/index.d.ts"
30
+ }
31
+ },
32
+ "files": [
33
+ "dist"
34
+ ],
35
+ "license": "MIT",
36
+ "author": "Jesse Daniel Mitchell",
37
+ "sideEffects": false,
38
+ "scripts": {
39
+ "build": "node scripts/build-lib.js",
40
+ "build:ui": "esbuild ui/app.js --bundle --outfile=ui/bundle.js --format=iife --platform=browser",
41
+ "dev:ui": "esbuild ui/app.js --bundle --outfile=ui/bundle.js --format=iife --platform=browser --watch",
42
+ "prepublishOnly": "npm test && npm run build",
43
+ "test": "vitest run",
44
+ "test:watch": "vitest"
45
+ },
46
+ "dependencies": {
47
+ "@turf/turf": "^6.5.0"
48
+ },
49
+ "devDependencies": {
50
+ "esbuild": "^0.21.0",
51
+ "vitest": "^1.6.0"
52
+ }
53
+ }