-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 842 Bytes
/
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
{
"name": "geospread",
"version": "0.1.4",
"description": "Filter points by minimum distance in meters and optionally starting from a specific point",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": {
"url": "https://github.com/juanpujol/geospread"
},
"scripts": {
"build": "tsup",
"format": "prettier --write .",
"lint": "eslint --fix .",
"test": "vitest"
},
"keywords": [
"geojson",
"polygons",
"spread",
"spatial",
"geospatial",
"haversine",
"performance"
],
"author": "juanpujol",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
}
}