forked from perliedman/geojson-path-finder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "@geoman-io/geojson-path-finder",
"version": "1.0.1",
"description": "Find shortest path through a network of GeoJSON",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/geoman-io/geojson-path-finder.git"
},
"homepage": "https://github.com/geoman-io/geojson-path-finder",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"types": "dist/esm/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"prepare": "npm test && npm run build",
"pretest": "npm run build:esm",
"test": "vitest run"
},
"author": "Per Liedman <[email protected]> && Geoman.io",
"license": "ISC",
"dependencies": {
"@turf/distance": "^7.1.0",
"@turf/explode": "^7.1.0",
"@turf/helpers": "^7.1.0",
"tinyqueue": "^3.0.0"
},
"devDependencies": {
"@types/geojson": "^7946.0.14",
"@types/node": "^22.10.2",
"esm": "^3.2.25",
"typedoc": "^0.27.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}