-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.62 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
{
"name": "hookform-input",
"version": "2.0.1",
"license": "MIT",
"description": "Smart, polymorphic and typesafe Input component for react-hook-form",
"keywords": [
"react",
"react-hook-form",
"utility",
"generics",
"polymorphic"
],
"homepage": "",
"bugs": {
"url": "https://github.com/EmilMalanczak/hookform-input/issues"
},
"author": "EmilMalanczak <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:EmilMalanczak/hookform-input.git"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint:prettier:fix": "prettier --write .",
"lint:prettier:check": "prettier --check .",
"lint:eslint:fix": "eslint . --fix",
"lint:eslint:check": "eslint .",
"lint:fix": "pnpm lint:prettier && pnpm lint:eslint",
"lint:check": "pnpm lint:prettier:check && pnpm lint:eslint:check",
"typecheck": "tsc",
"test": "vitest run",
"test:coverage": "vitest --coverage",
"dev": "vitest",
"build": "pnpm typecheck && vite build",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"build-ci": "pnpm lint:check && pnpm build && pnpm check-exports && pnpm typecheck && pnpm test",
"bump-version": "changeset version",
"publish": "changeset publish",
"prepublishOnly": "pnpm build-ci"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@changesets/cli": "^2.27.9",
"@eslint/js": "^9.14.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@vitejs/plugin-react-swc": "^3.7.1",
"@vitest/coverage-v8": "2.1.4",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.12.0",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-hook-form": "^7.53.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.4"
},
"peerDependencies": {
"react": "^18.3.1",
"react-hook-form": "^7.53.2"
}
}