-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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
54
55
56
57
58
59
60
{
"name": "@hebcal/rest-api",
"version": "6.1.1",
"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"
],
"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": "^5.8.13",
"@hebcal/hdate": "^0.13.5",
"@hebcal/leyning": "^9.0.3"
},
"scripts": {
"build": "rollup -c",
"prepublish": "npm run build",
"pretest": "npm run build",
"docs": "typedoc",
"lint": "gts lint",
"clean": "gts clean",
"fix": "gts fix",
"test": "vitest"
},
"license": "BSD-2-Clause",
"devDependencies": {
"@hebcal/learning": "^6.0.2",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.10.6",
"gts": "^5.3.1",
"rollup": "^4.30.1",
"typedoc": "^0.27.6",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
}
}