generated from antfu/starter-ts
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 3.41 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
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@zamanapp/week-dates",
"type": "module",
"version": "1.0.3",
"private": false,
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]",
"description": "Utilities for working with week dates according ISO 8601 (ISO week date) and Hijri week calendars (Hijri week date) using Temporal.",
"author": "khawarizmus <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/zamanapp",
"homepage": "https://github.com/zamanapp/week-dates#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zamanapp/week-dates.git"
},
"bugs": "https://github.com/zamanapp/week-dates/issues",
"keywords": [
"week-date",
"temporal",
"iso8601",
"hijri",
"iso",
"week",
"date",
"calendar",
"hijri-date",
"islamic",
"islamic-calendar",
"hijri-calendar",
"hijri-week",
"hijri-week-calendar"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.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"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"play": "esno watch playground/index.ts",
"dev": "unbuild --stub",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"test": "vitest",
"test:ui": "vitest --ui --coverage.enabled=true",
"coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks",
"docs:dev": "pnpm run build && vitepress dev docs",
"docs:build": "pnpm run build && vitepress build docs",
"docs:preview": "pnpm run build && vitepress preview docs",
"bench": "vitest bench",
"generate": "esno scripts/generator.ts",
"validate": "esno scripts/validate.ts"
},
"dependencies": {
"@js-temporal/polyfill": "^0.4.4"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.4",
"@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",
"@shikijs/vitepress-twoslash": "^1.2.4",
"@types/ms": "^0.7.34",
"@types/node": "^20.11.19",
"@types/npmcli__ci-detect": "^2.0.3",
"@types/prompts": "^2.4.9",
"@vitest/coverage-istanbul": "^1.4.0",
"@vitest/ui": "^1.4.0",
"autoprefixer": "^10.4.19",
"bumpp": "^9.3.0",
"eslint": "^8.56.0",
"esno": "^4.0.0",
"floating-vue": "^5.2.2",
"kleur": "^4.1.5",
"lint-staged": "^15.2.2",
"ms": "^2.1.3",
"ora": "^8.0.1",
"pnpm": "^8.15.3",
"postcss": "^8.4.38",
"pretty-bytes": "^6.1.1",
"prompts": "^2.4.2",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.9.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"unstorage": "^1.10.2",
"vite": "^5.1.4",
"vitepress": "1.0.0-rc.45",
"vitest": "^1.3.1",
"vue": "^3.4.21"
},
"resolutions": {
"@js-temporal/polyfill": "0.4.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
}
}