-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 968 Bytes
/
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
{
"version": "2.0.1",
"name": "next-server-action-hook",
"description": "A React hook for handling Next.js server actions on the client side with built-in loading and error states.",
"author": "Danny Braunstein",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "tsc"
},
"dependencies": {
"@babel/preset-typescript": "^7.24.7",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.12",
"@types/testing-library__react-hooks": "^4.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-jest": "^29.2.3"
},
"devDependencies": {
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react-test-renderer": "^18.3.1",
"typescript": "^5.5.4"
},
"repository": {
"type": "git",
"url": "https://github.com/dannyblv/next-server-action-hook.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist/*"
]
}