-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.57 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
{
"name": "@hebcal/learning",
"version": "6.11.2",
"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.9.2",
"@hebcal/hdate": "^0.22.8"
},
"files": [
"dist",
"po"
],
"scripts": {
"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 && tsc",
"docs": "npx -y typedoc",
"clean": "rm -rf dist coverage .nyc_output src/*.json.ts src/*.po.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"fix": "oxlint . --fix && npm run format",
"lint": "oxlint .",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@types/node": "^26.2.0",
"gettext-parser": "^9.1.1",
"oxlint": "^1.80.0",
"prettier": "^3.9.6",
"typescript": "^7.0.2",
"vitest": "^4.1.11"
}
}