-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.38 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
{
"name": "@hebcal/triennial",
"version": "6.0.1",
"description": "Javascript Triennial Torah Readings",
"module": "./dist/esm/index.js",
"type": "module",
"exports": {
".": "./dist/esm/index.js",
"./dist/esm/*": "./dist/esm/*.js"
},
"typings": "dist/esm/index.d.ts",
"scripts": {
"build:rollup": "rollup -c",
"build": "npm run build:rollup",
"prepublish": "npm run build",
"docs": "typedoc",
"pretest": "npm run build",
"test": "vitest",
"fix": "gts fix",
"lint": "gts lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hebcal/hebcal-triennial.git"
},
"author": "Michael J. Radwin (https://github.com/mjradwin)",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/hebcal/hebcal-triennial/issues"
},
"homepage": "https://hebcal.github.io/api/triennial/",
"dependencies": {
"@hebcal/core": "^5.8.11",
"@hebcal/hdate": "^0.13.5",
"@hebcal/leyning": "^9.0.3"
},
"files": [
"dist"
],
"devDependencies": {
"@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.5",
"gts": "^5.3.1",
"rollup": "^4.30.1",
"typedoc": "^0.27.6",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
}
}