-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.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
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
{
"name": "@tuplo/use-calendar",
"description": "Headless calendar hook for React",
"version": "0.0.0-development",
"repository": "git@github.com:tuplo/use-calendar.git",
"author": "Rui Costa",
"license": "MIT",
"keywords": [
"react",
"react hooks",
"calendar",
"headless ui",
"WAI-ARIA"
],
"types": "dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
".": [
{
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
},
"default": "./dist/index.mjs"
},
"./dist/index.mjs"
]
},
"files": [
"dist/index.cjs",
"dist/index.d.ts",
"dist/index.mjs",
"dist/use-calendar.d.ts"
],
"scripts": {
"build": "tsx sh/build.ts",
"coverage": "tsx sh/coverage.ts",
"format": "prettier --write src sh",
"lint:ts": "tsc --noEmit",
"lint": "eslint sh/ src/",
"test:ci": "vitest run",
"test": "vitest --watch",
"upgrade": "npm-check-updates -u -x eslint && npm install"
},
"peerDependencies": {
"react": "^16.8.6 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@testing-library/dom": "10.0.0",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "15.0.4",
"@testing-library/user-event": "14.5.2",
"@tuplo/shell": "1.2.2",
"@types/jsdom": "21.1.6",
"@types/node": "20.12.7",
"@vitejs/plugin-react": "4.2.1",
"@vitest/coverage-v8": "1.5.2",
"esbuild": "0.20.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-perfectionist": "2.10.0",
"eslint-plugin-testing-library": "6.2.2",
"eslint-plugin-unicorn": "52.0.0",
"eslint-plugin-vitest": "0.5.4",
"globals": "15.0.0",
"jsdom": "24.0.0",
"npm-check-updates": "16.14.20",
"nyc": "15.1.0",
"prettier": "3.2.5",
"react": "18.3.0",
"react-dom": "18.3.0",
"tsx": "4.7.3",
"typescript": "5.4.5",
"typescript-eslint": "7.7.1",
"vite": "5.2.10",
"vitest": "1.5.2"
}
}