-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"name": "@forthtilliath/react-use-form-fields-ref",
"version": "0.3.2",
"description": "A custom React hook, useFormFieldsRef, that creates an object with references to form inputs and provides methods to get and set their values, as well as to create FormData for form submissions.",
"keywords": [
"react",
"hook",
"custom hook",
"useRef",
"form",
"fields",
"references",
"input",
"FormData"
],
"homepage": "https://github.com/Forthtilliath/react-use-form-fields-ref#readme",
"bugs": {
"url": "https://github.com/Forthtilliath/react-use-form-fields-ref/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Forthtilliath/react-use-form-fields-ref.git"
},
"license": "MIT",
"author": "forthtilliath",
"type": "module",
"main": "./src/useFormFieldsRef.ts",
"scripts": {
"test": "jest"
},
"dependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.7",
"@types/react": "^18.2.30",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-node": "^10.9.1"
}
}