-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.79 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "react-form-action",
"version": "2.3.0",
"description": "State management helpers for the react form actions.",
"repository": {
"type": "git",
"url": "https://github.com/MiroslavPetrik/react-form-action.git"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"files": [
"/dist"
],
"scripts": {
"build": "tsup",
"test": "vitest",
"typecheck": "vitest --typecheck",
"format": "prettier . --write",
"format:check": "prettier . --check",
"ncu": "ncu --interactive --format group"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./client": {
"import": "./dist/client.mjs",
"module": "./dist/client.mjs",
"types": "./dist/client.d.mts",
"default": "./dist/client.mjs"
}
},
"keywords": [
"react",
"form-action",
"react-form-action",
"next",
"next-form-action",
"nextjs",
"server-action"
],
"author": "Miroslav Petrik",
"license": "MIT",
"peerDependencies": {
"react": ">=19",
"react-dom": ">=19",
"zod": "^3",
"zod-form-data": "^2"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.1",
"@vitejs/plugin-react": "^4.3.4",
"happy-dom": "^16.0.0",
"npm-check-updates": "^17.1.12",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-render-prop-type": "^1.0.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^1.3.1",
"zod": "^3.23.8",
"zod-form-data": "^2.0.2"
}
}