-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.27 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.27 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
{
"name": "@forestream/form-components",
"version": "1.0.1",
"description": "React hook form components for next.js",
"main": "dist/index.mjs",
"types": "dist/index.d.mts",
"files": [
"dist"
],
"workspaces": [
"apps/*"
],
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsdown",
"demo": "npm run dev -w demo"
},
"keywords": [],
"author": "forestream",
"license": "ISC",
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-hook-form": "^7.0.0"
},
"devDependencies": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-hook-form": "^7.75.0",
"@eslint/css": "^1.2.0",
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.2.0",
"@eslint/markdown": "^8.0.1",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.6.0",
"jiti": "^2.6.1",
"jsonc-eslint-parser": "^3.1.0",
"prettier": "3.8.3",
"tsdown": "^0.21.10",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2"
}
}