-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "osm-api",
"version": "2.3.0",
"contributors": [
"Kyle Hensel (https://github.com/k-yle)"
],
"description": "🗺️🌏 Javascript/Typescript wrapper around the OpenStreetMap API",
"main": "dist",
"unpkg": "dist/index.min.js",
"types": "dist/index.d.ts",
"license": "MIT",
"files": [
"dist"
],
"keywords": [
"osm",
"openstreetmap",
"openstreetmap api"
],
"repository": "https://github.com/k-yle/osm-api-js",
"scripts": {
"build": "rm -rf dist && tsc --emitDeclarationOnly && rm -rf dist/__tests__ && browserify -s OSM src/index.ts -p tsify > dist/index.js && uglifyjs dist/index.js > dist/index.min.js",
"lint": "eslint .",
"test": "vitest",
"trypublish": "npm publish --provenance || true"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@types/geojson": "^7946.0.13",
"fast-xml-parser": "^4.4.1"
},
"devDependencies": {
"@types/node": "^22.5.5",
"browserify": "^17.0.0",
"eslint": "^9.10.0",
"eslint-config-kyle": "^25.0.0-beta3",
"tsify": "^5.0.4",
"typescript": "^5.6.2",
"uglify-js": "^3.19.3",
"vitest": "^2.1.1"
},
"prettier": {
"trailingComma": "es5"
}
}