-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.11 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.11 KB
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
{
"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 && npm install"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "14.5.2",
"@tuplo/shell": "1.2.3",
"@types/jsdom": "21.1.7",
"@types/node": "22.10.5",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-v8": "2.1.8",
"@vitest/eslint-plugin": "1.1.24",
"esbuild": "0.24.2",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-perfectionist": "4.6.0",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-testing-library": "7.1.1",
"eslint-plugin-unicorn": "56.0.1",
"globals": "15.14.0",
"jsdom": "25.0.1",
"npm-check-updates": "17.1.13",
"nyc": "17.1.0",
"prettier": "3.4.2",
"react": "19.0.0",
"react-dom": "19.0.0",
"tsx": "4.19.2",
"typescript": "5.7.2",
"typescript-eslint": "8.19.0",
"vite": "6.0.7",
"vitest": "2.1.8"
}
}