-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.69 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.69 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@rapideditor/country-coder",
"version": "5.6.1",
"description": "Convert longitude-latitude pairs to ISO 3166-1 codes quickly and locally",
"repository": {
"type": "git",
"url": "git+https://github.com/rapideditor/country-coder.git"
},
"license": "ISC",
"keywords": [
"reverse geocoder",
"country codes",
"ISO 3166-1",
"United Nations M49",
"geolocation",
"calling codes"
],
"files": [
"dist/",
"src/"
],
"type": "module",
"source": "./src/country-coder.ts",
"types": "./dist/country-coder.d.ts",
"exports": {
"bun": "./src/country-coder.ts",
"types": "./dist/country-coder.d.ts",
"import": "./dist/country-coder.mjs",
"require": "./dist/country-coder.cjs",
"browser": "./dist/country-coder.iife.js"
},
"dependencies": {
"which-polygon": "^2.2.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@mapbox/geojson-rewind": "^0.5.2",
"@types/bun": "^1.3.11",
"@types/geojson": "^7946.0.16",
"@types/which-polygon": "^2.2.5",
"eslint": "^9.39.4",
"globals": "^17.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1"
},
"scripts": {
"all": "bun run --sequential clean lint build test",
"build": "bun run --sequential format 'build:*'",
"build:js": "bun ./scripts/build_js.ts",
"build:ts": "tsc",
"clean": "bun ./scripts/clean.ts",
"format": "bun ./scripts/format-json.js",
"lint": "eslint ./scripts ./src ./test",
"postpublish": "bun ./scripts/postpublish.ts",
"start": "bun ./scripts/server.ts",
"test": "bun test --dots --coverage ./test"
},
"publishConfig": {
"access": "public"
},
"engines": {
"bun": ">=1.3.10"
}
}