-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.58 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
{
"name": "@hebcal/learning",
"version": "6.0.1",
"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": ">= 16.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": "^5.8.8"
},
"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": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"gettext-parser": "^8.0.0",
"gts": "^5.3.1",
"rollup": "^4.29.1",
"typedoc": "^0.27.6",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}