-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
61 lines (61 loc) · 1.75 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
{
"name": "@ts-react/form",
"version": "1.0.6",
"description": "Build forms faster!",
"module": "lib/index.mjs",
"main": "lib/index.cjs",
"types": "lib/src/index.d.ts",
"packageManager": "[email protected]",
"scripts": {
"dev": "jest --watchAll",
"test:cov": "jest --coverage",
"test": "jest",
"build": "npx rollup -c rollup.config.js",
"build-test:dryrun": "act -j build-test -P ubuntu-latest=ghcr.io/catthehacker/ubuntu:js-latest",
"pretty": "prettier --write \"./**/*.{js,jsx,ts,tsx,json}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/iway1/react-ts-form.git"
},
"type": "module",
"author": "Isaac Way",
"license": "ISC",
"bugs": {
"url": "https://github.com/iway1/react-ts-form/issues"
},
"homepage": "https://github.com/iway1/react-ts-form#readme",
"devDependencies": {
"@hookform/resolvers": "^2.9.10",
"@rollup/plugin-terser": "^0.2.1",
"@rollup/plugin-typescript": "^10.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.4",
"@types/react": "^18.0.26",
"@types/testing-library__jest-dom": "^5.14.5",
"@types/yargs": "^17.0.23",
"expect-type": "^0.15.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.41.3",
"ts-jest": "^29.0.3",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"zod": "^3.20.2"
},
"files": [
"lib",
"!lib/src/__tests__"
],
"peerDependencies": {
"@hookform/resolvers": "^2.8.0 || ^3.0.0",
"react": "^16.8.0 || ^17 || ^18",
"react-hook-form": "^7.39.0",
"zod": "^3.19.0"
}
}