generated from antfu/starter-ts
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.01 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "hijri-week-calendar",
"type": "module",
"version": "1.0.0",
"packageManager": "[email protected]",
"description": "A Hijri Week Calendar is an implementation of the ISO 8601 equivalent for the Hijri calendar.",
"author": "khawarizmus (https://github.com/khawarizmus)",
"license": "MIT",
"funding": [
{
"type": "individual",
"url": "https://github.com/sponsors/khawarizmus"
},
{
"type": "individual",
"url": "https://github.com/sponsors/MohsenAlyafei"
}
],
"homepage": "https://github.com/khawarizmus/hijri-week-calendar#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/khawarizmus/hijri-week-calendar.git"
},
"bugs": "https://github.com/khawarizmus/hijri-week-calendar/issues",
"keywords": [
"hijri",
"calendar",
"week",
"date",
"iso",
"iso8601",
"hijri-date",
"islamic",
"islamic-calendar",
"hijri-calendar",
"hijri-week",
"hijri-week-calendar",
"standard"
],
"sideEffects": false,
"exports": {
".": {
"types": [
"./dist/index.d.ts",
"./dist/Temporal.d.ts"
],
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts",
"./dist/Temporal.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"postbuild": "cp -r src/types/Temporal.d.ts dist",
"dev": "unbuild --stub",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"date:generate": "esno scripts/generator.ts",
"date:validate": "esno scripts/validate.ts",
"test": "vitest",
"test:ui": "vitest --ui --coverage",
"test:coverage": "vitest --coverage",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@js-temporal/polyfill": "0.4.4"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.0",
"@antfu/ni": "^0.21.12",
"@antfu/utils": "^0.7.7",
"@npmcli/ci-detect": "^3.0.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/ms": "^0.7.34",
"@types/node": "^20.10.5",
"@types/npmcli__ci-detect": "^2.0.3",
"@types/prompts": "^2.4.9",
"@vitest/coverage-v8": "^1.1.3",
"@vitest/ui": "^1.1.3",
"bumpp": "^9.2.1",
"eslint": "^8.56.0",
"esno": "^4.0.0",
"kleur": "^4.1.5",
"lint-staged": "^15.2.0",
"ms": "^2.1.3",
"ora": "^8.0.1",
"pnpm": "^8.12.1",
"pretty-bytes": "^6.1.1",
"prompts": "^2.4.2",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"unstorage": "^1.10.1",
"vite": "^5.0.10",
"vitest": "^1.1.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}