-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.87 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.87 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@hebcal/core",
"version": "6.9.2",
"author": "Michael J. Radwin (https://github.com/mjradwin)",
"contributors": [
"Eyal Schachter (https://github.com/Scimonster)",
"Danny Sadinoff (https://github.com/dsadinoff)",
"Eliyahu Hershfeld (https://github.com/KosherJava)",
"Yisroel Yakovson (https://github.com/YizYah)",
"Schabse Laks (https://github.com/SLaks)",
"Benny Powers (https://github.com/bennypowers)"
],
"keywords": [
"hebcal",
"hebrew",
"calendar",
"jewish",
"holidays",
"chagim",
"sedra",
"date",
"dafyomi",
"zemanim",
"zmanim"
],
"description": "A perpetual Jewish Calendar API",
"module": "./dist/esm/index.js",
"type": "module",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js"
},
"./dist/esm/*": {
"types": "./dist/esm/*.d.ts",
"default": "./dist/esm/*.js"
}
},
"typings": "./dist/esm/index.d.ts",
"engines": {
"node": ">= 18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hebcal/hebcal-es6.git"
},
"bugs": {
"url": "https://github.com/hebcal/hebcal-es6/issues"
},
"homepage": "https://hebcal.github.io/api/core/",
"files": [
"dist",
"po"
],
"scripts": {
"build:rollup": "rollup -c",
"build:json2js": "for f in src/*.json; do echo 'export default' > \"$f.ts\" && cat \"$f\" >> \"$f.ts\"; done",
"size-demo:rollup": "rollup -c size-demo/rollup.config.js",
"size-demo": "npm run build && npm run size-demo:rollup",
"build": "npm run po2json && npm run build:json2js && npm run version && npm run build:rollup --production",
"prepublish": "npm run build",
"version": "node ./version.js package.json src/pkgVersion.ts",
"po2json": "node ./po2json.js po/he.po po/he-x-NoNikud.po po/ashkenazi.po",
"docs": "npx -y typedoc",
"pretest": "npm run build",
"check:types": "tsc -p tsconfig.nodenext.json",
"lint": "oxlint && prettier --check . && npm run check:types",
"coverage": "vitest --coverage",
"test": "vitest run",
"test:watch": "vitest",
"clean": "rm -rf dist docs",
"fix": "oxlint --fix && prettier --write ."
},
"license": "GPL-2.0",
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^26.2.0",
"@vitest/coverage-v8": "^4.1.10",
"gettext-parser": "^9.1.1",
"oxlint": "^1.78.0",
"prettier": "^3.9.6",
"pretty-bytes": "^7.1.1",
"rollup": "^4.62.4",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-visualizer": "^7.0.1",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"dependencies": {
"@hebcal/hdate": "^0.22.8",
"@hebcal/noaa": "^0.12.3",
"quick-lru": "^7.3.0",
"temporal-polyfill": "^1.0.3"
}
}