-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.01 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
{
"name": "geocoder",
"version": "0.5.0",
"description": "Browser-based geocoder for Australian addresses.",
"license": "MIT",
"private": true,
"author": "Australian Broadcasting Corporation",
"contributors": [
"Andrew Kesper <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/abcnews/geocoder.git"
},
"main": "dist/geocode.js",
"module": "dist/geocode.mjs",
"types": "dist/geocode.d.ts",
"scripts": {
"build": "tsup src/geocode.ts --env.NODE_ENV production --format=esm,cjs,iife --minify --globalName=__GEOCODE__ --dts",
"dev": "tsup src/geocode.ts --watch --format=esm,cjs,iife --globalName=__GEOCODE__ --dts & npm run example",
"example": "http-server . -p 9994 --log-ip -c-1 -o example.html"
},
"devDependencies": {
"@types/latlon-geohash": "^1.1.1",
"http-server": "^14.1.0",
"tsup": "^5.11.13"
},
"dependencies": {
"latlon-geohash": "^1.1.0",
"metaphone": "^1.0.6",
"minisearch": "^5.0.0-beta1"
}
}