-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.77 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "jalali-date",
"version": "1.5.0",
"description": "A Jalali to Gregorian converter with support of formatting output",
"scripts": {
"lint": "eslint . --cache",
"test": "vitest run",
"test:watch": "vitest",
"test:types": "tsc -p tests/types/tsconfig.json && tsc -p tests/types/tsconfig.bundler.json",
"test:bundles": "node tests/bundles.mjs",
"test:exports": "attw --pack .",
"build": "node scripts/build.mjs",
"watch": "node scripts/build.mjs --watch",
"prepack": "node scripts/build.mjs"
},
"repository": {
"type": "git",
"url": "git@github.com:arashm/JDate.git"
},
"main": "./lib/jdate.cjs",
"module": "./lib/jdate.mjs",
"types": "./lib/index.d.ts",
"unpkg": "./lib/jdate.min.js",
"jsdelivr": "./lib/jdate.min.js",
"exports": {
".": {
"import": {
"types": "./lib/jdate.d.mts",
"default": "./lib/jdate.mjs"
},
"require": {
"types": "./lib/jdate.d.cts",
"default": "./lib/jdate.cjs"
},
"default": "./lib/jdate.cjs"
},
"./lib/*": "./lib/*",
"./package.json": "./package.json"
},
"files": [
"lib"
],
"sideEffects": false,
"engines": {
"node": ">=14"
},
"keywords": [
"jalali",
"sun",
"shamsi",
"calendar",
"gregorian",
"converter"
],
"author": "Arash Mousavi",
"license": "MIT",
"bugs": {
"url": "https://github.com/arashm/JDate/issues"
},
"homepage": "https://github.com/arashm/JDate",
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@eslint/js": "^10.0.1",
"@vitest/eslint-plugin": "^1.6.24",
"esbuild": "^0.28.1",
"eslint": "^10.8.0",
"eslint-plugin-import-x": "^4.17.1",
"globals": "^17.8.0",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
}
}