-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
51 lines (51 loc) · 1.04 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
{
"name": "little-date",
"version": "1.0.0",
"description": "Small & sweet date-range formatting library",
"author": "Timo Lins",
"license": "MIT",
"repository": "vercel/little-date",
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.mjs",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/es/index.d.mts",
"default": "./dist/es/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"engines": {
"node": ">=10"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "bunchee",
"dev": "TZ=UTC vitest",
"test": "TZ=UTC vitest run",
"coverage": "TZ=UTC vitest run --coverage"
},
"keywords": [
"date range",
"formatting",
"short",
"compact"
],
"devDependencies": {
"@vitest/coverage-v8": "^0.34.6",
"bunchee": "^4.4.1",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"dependencies": {
"date-fns": "^2.0.0"
}
}