-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.67 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": "jcal-zmanim",
"description": "A very complete JavaScript library for the Jewish Calendar, Zmanim, Holidays, and daily Shul notes.",
"version": "1.5.1",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"devDependencies": {
"@swc/core": "1.10.0",
"@types/jest": "^29.5.14",
"@types/node": "22.10.1",
"jest": "^29.7.0",
"shx": "^0.3.4",
"tsup": "8.3.5",
"typescript": "^5.7.2"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build": "SET NODE_ENV=production && tsup && shx cp -r ./README.md dist/",
"build-mac": "NODE_ENV=production tsup && shx cp -r ./README.md dist/",
"build-win": "SET NODE_ENV=production && tsup && shx cp -r ./README.md dist/",
"build-dev": "SET NODE_ENV=development && tsup",
"build-dev-win": "SET NODE_ENV=development && tsup",
"build-dev-mac": "NODE_ENV=development && tsup",
"tsup": "tsup"
},
"url": "git+https://github.com/cbsom/jcal-zmanim.git",
"repository": {
"type": "git",
"url": "git+https://github.com/cbsom/jcal-zmanim.git"
},
"keywords": [
"Calendar",
"Jewish",
"Halacha",
"Zmanim",
"Shul"
],
"author": "Chaim B. Sommers <cb@compute.co.il>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/cbsom/jCal/issues"
},
"homepage": "https://github.com/cbsom/jCal#readme",
"dependencies": {
"closest-match": "1.3.3"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}