-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.54 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.54 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
{
"name": "@hebcal/learning",
"version": "6.8.0",
"description": "Daily learning schedules: Daf Yomi, Mishna Yomi, etc",
"module": "dist/esm/index.js",
"type": "module",
"typings": "dist/esm/index.d.ts",
"exports": {
".": "./dist/esm/index.js",
"./*": "./dist/esm/*.js"
},
"engines": {
"node": ">= 18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hebcal/hebcal-learning.git"
},
"author": "Michael J. Radwin (https://github.com/mjradwin)",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/hebcal/hebcal-learning/issues"
},
"homepage": "https://github.com/hebcal/hebcal-learning#readme",
"dependencies": {
"@hebcal/core": "^6.1.0",
"@hebcal/hdate": "^0.22.0"
},
"files": [
"dist"
],
"scripts": {
"build:rollup": "rollup -c",
"build:json2js": "for f in src/*.json; do echo 'export default' > $f.ts && cat $f >> $f.ts; done",
"po2json": "node ./po2json.js po/*.po",
"build": "npm run po2json && npm run build:json2js && npm run build:rollup",
"docs": "typedoc",
"clean": "gts clean",
"fix": "gts fix",
"lint": "gts lint",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "vitest"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^25.6.0",
"gettext-parser": "^9.0.2",
"gts": "^7.0.0",
"rollup": "^4.60.1",
"tslib": "^2.8.1",
"typedoc": "^0.28.18",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
}
}