-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.6 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
{
"name": "@hebcal/rest-api",
"version": "7.1.3",
"author": "Michael J. Radwin (https://github.com/mjradwin)",
"keywords": [
"hebcal"
],
"description": "Jewish holidays and Hebrew calendar as plain JSON objects and CSV export",
"engines": {
"node": ">= 18.0.0"
},
"module": "./dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
"type": "module",
"exports": {
".": "./dist/esm/index.js",
"./dist/esm/*": "./dist/esm/*.js"
},
"files": [
"dist",
"po"
],
"repository": {
"type": "git",
"url": "https://github.com/hebcal/hebcal-rest-api.git"
},
"bugs": {
"url": "https://github.com/hebcal/hebcal-rest-api/issues"
},
"homepage": "https://hebcal.github.io/api/rest-api/",
"dependencies": {
"@hebcal/core": "^6.9.1",
"@hebcal/hdate": "^0.22.7",
"@hebcal/leyning": "^10.0.0"
},
"scripts": {
"po2json": "node ./po2json.js po/en.po po/he.po",
"build": "npm run po2json && npm run json2ts && tsc",
"prepublish": "npm run build",
"pretest": "npm run build",
"docs": "npx -y typedoc@^0.28.20",
"lint": "oxlint && prettier --check \"src/**/*.ts\" \"*.js\"",
"clean": "rm -rf ./dist",
"fix": "oxlint --fix && prettier --write \"src/**/*.ts\" \"*.js\"",
"test": "vitest",
"json2ts": "node ./json2ts.js src/countryNames.json"
},
"license": "BSD-2-Clause",
"devDependencies": {
"@hebcal/learning": "^6.9.5",
"@hebcal/locales": "^6.5.1",
"@types/node": "^26.1.2",
"gettext-parser": "^9.1.1",
"oxlint": "^1.76.0",
"prettier": "^3.9.6",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
}
}