-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.82 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
{
"name": "@lloydjatkinson/date-fns-additional",
"description": "Additional functionality built on date-fns",
"author": "Lloyd Atkinson",
"license": "MIT",
"version": "0.0.7",
"keywords": [
"date-fns",
"date",
"date-formatting"
],
"homepage": "https://github.com/lloydjatkinson/date-fns-additional#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/lloydjatkinson/date-fns-additional.git"
},
"bugs": {
"url": "https://github.com/lloydjatkinson/date-fns-additional/issues"
},
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"/dist/**/*.d.ts",
"/dist/**/*.js",
"!/dist/**/*.spec.*"
],
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@vitest/coverage-c8": "^0.27.1",
"@vitest/ui": "^0.27.1",
"eslint": "^8.31.0",
"serve": "^14.1.2",
"typedoc": "^0.23.24",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vitest": "^0.27.1"
},
"peerDependencies": {
"date-fns": "^2.29.3"
},
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts,.cjs,.mjs",
"lint:fix": "eslint . --ext .ts,.cjs,.mjs --fix",
"test": "vitest",
"test:ui": "vitest --ui",
"test:types": "vitest typecheck",
"test:coverage": "vitest run --coverage",
"test:coverage:serve": "vitest run --coverage; serve coverage",
"docs:build": "typedoc src/index.ts",
"docs:serve": "typedoc src/index.ts; serve docs",
"changeset": "changeset"
}
}