-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.08 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
{
"name": "@polaritybit/use-form",
"version": "1.4.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/gianmarcotoso/use-form"
},
"description": "A hook for forms",
"main": "dist/index.js",
"scripts": {
"test": "jest --coverage",
"build": "rimraf dist && rollup --config rollup.config.js"
},
"author": "Gian Marco Toso",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.2",
"@testing-library/react": "^13.2.0",
"@types/jest": "^27.5.1",
"@types/ramda": "^0.28.13",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.74.1",
"rollup-plugin-multi-input": "^1.3.1",
"ts-jest": "^28.0.3",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
},
"dependencies": {
"immer": "^9.0.14",
"ramda": "^0.28.0"
},
"peerDependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}