-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.86 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.86 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
{
"name": "react-hook-form-ai",
"version": "1.0.10",
"description": "A wrapper package over React Hook Form that enables AI features like auto-fill and form summarization using the browser's built-in LLM.",
"main": "dist/index.js",
"types": "dist/types/index.js",
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"build": "tsc",
"test": "jest",
"generate:api-reference": "npx tsdoc-markdown --src=\"src/**/*.ts\" --dest=docs/API_REFERENCE.md --repo=https://github.com/grayhatdevelopers/react-hook-form-ai"
},
"keywords": [
"react",
"hook",
"form",
"ai",
"autofill",
"summarization"
],
"author": "Saad Ahmed Bazaz, Sameed Ilyas",
"contributors": [
{
"name": "Saad Ahmed Bazaz",
"url": "https://github.com/saadbazaz"
},
{
"name": "Sameed Ilyas",
"url": "https://github.com/sameedilyas"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/grayhatdevelopers/react-hook-form-ai.git"
},
"homepage": "https://grayhatdevelopers.github.io/react-hook-form-ai/",
"bugs": {
"url": "https://github.com/grayhatdevelopers/react-hook-form-ai/issues"
},
"dependencies": {
"react": "^17.0.0",
"react-hook-form": "^7.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^24.9.2",
"@types/react": "^19.2.2",
"eslint": "^9.30.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "^26.0.0",
"prettier": "^3.6.2",
"tsdoc-markdown": "^1.4.1",
"typescript": "^4.0.0"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
}
}