-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.99 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
{
"name": "@hebcal/geo-sqlite",
"version": "5.12.1",
"author": "Michael J. Radwin (https://github.com/mjradwin)",
"keywords": [
"hebcal"
],
"description": "Hebcal ES6 interface to GeoNames and USA ZIP code SQLite databases",
"module": "./dist/index.js",
"type": "module",
"exports": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"bin": {
"build-geonames-sqlite": "bin/build-geonames-sqlite",
"download-and-make-dbs": "bin/download-and-make-dbs",
"make-test-dbs": "bin/make-test-dbs",
"make-zips-sqlite": "bin/make-zips-sqlite"
},
"repository": {
"type": "git",
"url": "https://github.com/hebcal/hebcal-geo-sqlite.git"
},
"bugs": {
"url": "https://github.com/hebcal/hebcal-geo-sqlite/issues"
},
"homepage": "https://hebcal.github.io/api/geo-sqlite/",
"typings": "./dist/index.d.ts",
"engines": {
"node": ">= 22.5.0"
},
"files": [
"dist",
"bin",
"test/fixtures",
"cities-patch.txt",
"zips-dummy.sql"
],
"dependencies": {
"@hebcal/cities": "^6.2.1",
"@hebcal/core": "^6.9.2",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"quick-lru": "^7.3.0",
"transliteration": "^2.6.1"
},
"scripts": {
"build:version": "node ./version.cjs package.json src/pkgVersion.ts",
"build:json2js": "for f in src/*.json; do echo 'export default' > \"$f.ts\" && cat \"$f\" >> \"$f.ts\"; done",
"compile": "tsc",
"build": "npm run build:version && npm run build:json2js && npm run compile",
"clean": "rm -rf ./dist ./docs",
"prepublishOnly": "npm run build",
"prepare": "npm run build",
"docs": "npx -y typedoc",
"lint": "oxlint && prettier --check \"src/**/*.ts\"",
"fix": "oxlint --fix && prettier --write \"src/**/*.ts\"",
"pretest": "npm run build",
"test": "node --test test/*.spec.js"
},
"license": "BSD-2-Clause",
"devDependencies": {
"@types/node": "^26.2.0",
"oxlint": "^1.78.0",
"prettier": "^3.9.6",
"typescript": "^7.0.2"
}
}