-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 KB
/
package.json
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
{
"name": "@hebcal/hdate",
"version": "0.13.4",
"description": "converts between Hebrew and Gregorian dates using Rata Die (R.D.) algorithm by Dershowitz and Reingold",
"author": "Michael J. Radwin (https://github.com/mjradwin)",
"contributors": [
"Eyal Schachter (https://github.com/Scimonster)",
"Danny Sadinoff (https://github.com/dsadinoff)"
],
"license": "GPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/hebcal/hdate-js.git"
},
"type": "module",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
"exports": {
".": "./dist/esm/index.js",
"./dist/esm/*": "./dist/esm/*.js"
},
"keywords": [
"hebcal",
"hebrew",
"calendar",
"date"
],
"files": [
"dist/esm"
],
"scripts": {
"build:rollup": "rollup -c",
"build": "npm run po2json && npm run build:rollup --production",
"prepublish": "npm run build",
"po2json": "node ./po2json.js po/he.po po/ashkenazi.po",
"docs": "typedoc",
"pretest": "npm run build",
"lint": "gts lint",
"test": "vitest",
"clean": "gts clean",
"fix": "gts fix"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.10.2",
"gettext-parser": "^8.0.0",
"gts": "^6.0.2",
"rollup": "^4.29.1",
"typedoc": "^0.27.6",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}