forked from osmlab/osm-community-index
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.33 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.33 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "osm-community-index",
"version": "6.0.0",
"license": "ISC",
"description": "An index of community resources for OpenStreetMap",
"homepage": "https://openstreetmap.community",
"repository": "github:osmlab/osm-community-index",
"contributors": [
"Andrew Wiseman (https://github.com/aawiseman)",
"Bryan Housel <bhousel@gmail.com> (https://github.com/bhousel)",
"eisams (https://github.com/eisams)",
"Kai Michael Poppe (https://github.com/kmpoppe)",
"nikh050 (https://github.com/nikh050)"
],
"keywords": [
"OSM",
"OpenStreetMap",
"community"
],
"files": [
"dist/",
"features/",
"i18n/",
"lib/",
"resources/",
"schema/",
"src/"
],
"type": "module",
"exports": {
"bun": "./src/oci.ts",
"types": "./dist/ts/src/oci.d.ts",
"import": "./dist/js/oci.mjs",
"require": "./dist/js/oci.cjs",
"browser": "./dist/js/oci.iife.js"
},
"scripts": {
"all": "run-s clean lint build test",
"build": "run-p build:js build:json build:ts",
"build:js": "bun ./scripts/build_js.ts",
"build:json": "bun ./scripts/build_json.ts",
"build:ts": "tsc",
"clean": "bun ./scripts/clean.ts",
"icons": "bun ./scripts/icons.ts",
"lint": "eslint ./lib ./scripts ./src ./test",
"prepublishOnly": "bun ./scripts/prepublish.ts",
"postpublish": "bun ./scripts/postpublish.ts",
"start": "bun ./scripts/server.ts",
"stats": "bun ./scripts/stats.ts",
"test": "bun test --dots --coverage ./test/*.js",
"txpull": "tx pull -a",
"txpush": "tx push -s"
},
"dependencies": {
"diacritics": "^1.3.0"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@fortawesome/fontawesome-free": "^7.1.0",
"@mapbox/geojson-area": "^0.2.2",
"@mapbox/geojson-rewind": "^0.5.2",
"@rapideditor/location-conflation": "~1.7.0",
"@types/bun": "^1.3.1",
"bytes": "^3.1.2",
"easy-table": "^1.2.0",
"eslint": "^9.38.0",
"geojson-bounds": "^1.0.4",
"geojson-precision": "^1.0.0",
"globals": "^16.4.0",
"json5": "^2.2.3",
"jsonschema": "^1.5.0",
"json-stringify-pretty-compact": "^4.0.0",
"locale-compare": "^2.0.0",
"npm-run-all2": "^8.0.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2"
},
"publishConfig": {
"access": "public"
},
"engines": {
"bun": ">=1.3.0"
}
}