-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.7 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
61
62
63
64
65
66
67
68
{
"name": "@hebcal/icalendar",
"version": "6.1.1",
"author": "Michael J. Radwin (https://github.com/mjradwin)",
"keywords": [
"ical",
"icalendar",
"jewish",
"hebcal"
],
"description": "Jewish holidays and Hebrew calendar as iCalendar RFC 2445",
"module": "dist/index.js",
"type": "module",
"exports": {
"import": "./dist/index.js",
"types": "./dist/icalendar.d.ts"
},
"typings": "dist/icalendar.d.ts",
"engines": {
"node": ">= 18.0.0"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hebcal/hebcal-icalendar.git"
},
"bugs": {
"url": "https://github.com/hebcal/hebcal-icalendar/issues"
},
"dependencies": {
"@hebcal/core": "^5.8.3",
"@hebcal/hdate": "^0.12.0",
"@hebcal/rest-api": "^6.1.0",
"murmurhash3": "^0.5.0",
"tslib": "^2.8.1"
},
"scripts": {
"build:rollup": "rollup -c",
"build:version": "node ./version.cjs package.json src/pkgVersion.ts",
"build": "npm run build:version && npm run build:rollup",
"prepare": "npm run build",
"pretest": "npm run build",
"docs": "typedoc",
"coverage": "jest --coverage",
"test": "jest",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix"
},
"license": "BSD-2-Clause",
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@hebcal/learning": "^5.1.2",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-typescript": "^12.1.1",
"@types/jest": "^29.5.14",
"@types/node": "22.10.1",
"gts": "^5.3.1",
"jest": "^29.7.0",
"rollup": "^4.28.1",
"typedoc": "^0.27.3",
"typescript": "^5.7.2"
}
}