|
1 | 1 | { |
2 | | - "name": "next-safe-action", |
3 | | - "version": "0.0.0-development", |
4 | | - "private": false, |
5 | | - "description": "Type safe and validated Server Actions in your Next.js project.", |
6 | | - "main": "./dist/index.mjs", |
7 | | - "module": "./dist/index.mjs", |
8 | | - "types": "./dist/index.d.mts", |
9 | | - "files": [ |
10 | | - "dist" |
11 | | - ], |
12 | | - "exports": { |
13 | | - ".": "./dist/index.mjs", |
14 | | - "./hooks": "./dist/hooks.mjs", |
15 | | - "./stateful-hooks": "./dist/stateful-hooks.mjs" |
16 | | - }, |
17 | | - "typesVersions": { |
18 | | - "*": { |
19 | | - ".": [ |
20 | | - "./dist/index.d.mts" |
21 | | - ], |
22 | | - "hooks": [ |
23 | | - "./dist/hooks.d.mts" |
24 | | - ], |
25 | | - "stateful-hooks": [ |
26 | | - "./dist/stateful-hooks.d.mts" |
27 | | - ] |
28 | | - } |
29 | | - }, |
30 | | - "funding": [ |
31 | | - { |
32 | | - "type": "github", |
33 | | - "url": "https://github.com/sponsors/TheEdoRan" |
34 | | - }, |
35 | | - { |
36 | | - "type": "paypal", |
37 | | - "url": "https://www.paypal.com/donate/?hosted_button_id=ES9JRPSC66XKW" |
38 | | - } |
39 | | - ], |
40 | | - "scripts": { |
41 | | - "lint": "tsc && prettier --write . && eslint .", |
42 | | - "test": "node --import tsx --test ./src/__tests__/*.test.ts", |
43 | | - "build": "tsdown", |
44 | | - "deploy": "semantic-release" |
45 | | - }, |
46 | | - "keywords": [ |
47 | | - "next", |
48 | | - "nextjs", |
49 | | - "react", |
50 | | - "rsc", |
51 | | - "react server components", |
52 | | - "mutation", |
53 | | - "action", |
54 | | - "actions", |
55 | | - "react actions", |
56 | | - "next actions", |
57 | | - "server actions" |
58 | | - ], |
59 | | - "author": "Edoardo Ranghieri", |
60 | | - "license": "MIT", |
61 | | - "engines": { |
62 | | - "node": ">=18.17" |
63 | | - }, |
64 | | - "devDependencies": { |
65 | | - "@eslint/js": "^9.19.0", |
66 | | - "@types/node": "^22", |
67 | | - "@types/react": "^19", |
68 | | - "@types/react-dom": "^19", |
69 | | - "@typescript-eslint/eslint-plugin": "^8.26.1", |
70 | | - "@typescript-eslint/parser": "^8.26.1", |
71 | | - "deepmerge-ts": "^7.1.4", |
72 | | - "eslint": "catalog:", |
73 | | - "eslint-config-prettier": "^9.1.0", |
74 | | - "eslint-define-config": "^2.1.0", |
75 | | - "eslint-plugin-react-hooks": "^5.1.0", |
76 | | - "next": "catalog:", |
77 | | - "react": "catalog:", |
78 | | - "react-dom": "catalog:", |
79 | | - "semantic-release": "^23", |
80 | | - "tsdown": "^0.14.1", |
81 | | - "tsx": "^4.19.2", |
82 | | - "typescript": "catalog:", |
83 | | - "typescript-eslint": "^8.22.0", |
84 | | - "yup": "^1.6.1", |
85 | | - "zod": "^3.24.1" |
86 | | - }, |
87 | | - "peerDependencies": { |
88 | | - "next": ">= 14.0.0", |
89 | | - "react": ">= 18.2.0", |
90 | | - "react-dom": ">= 18.2.0" |
91 | | - }, |
92 | | - "repository": { |
93 | | - "type": "git", |
94 | | - "url": "https://github.com/TheEdoRan/next-safe-action.git" |
95 | | - } |
| 2 | + "name": "next-safe-action", |
| 3 | + "version": "0.0.0-development", |
| 4 | + "private": false, |
| 5 | + "description": "Type safe and validated Server Actions in your Next.js project.", |
| 6 | + "main": "./dist/index.mjs", |
| 7 | + "module": "./dist/index.mjs", |
| 8 | + "types": "./dist/index.d.mts", |
| 9 | + "files": [ |
| 10 | + "dist" |
| 11 | + ], |
| 12 | + "exports": { |
| 13 | + ".": "./dist/index.mjs", |
| 14 | + "./hooks": "./dist/hooks.mjs", |
| 15 | + "./stateful-hooks": "./dist/stateful-hooks.mjs" |
| 16 | + }, |
| 17 | + "typesVersions": { |
| 18 | + "*": { |
| 19 | + ".": [ |
| 20 | + "./dist/index.d.mts" |
| 21 | + ], |
| 22 | + "hooks": [ |
| 23 | + "./dist/hooks.d.mts" |
| 24 | + ], |
| 25 | + "stateful-hooks": [ |
| 26 | + "./dist/stateful-hooks.d.mts" |
| 27 | + ] |
| 28 | + } |
| 29 | + }, |
| 30 | + "funding": [ |
| 31 | + { |
| 32 | + "type": "github", |
| 33 | + "url": "https://github.com/sponsors/TheEdoRan" |
| 34 | + }, |
| 35 | + { |
| 36 | + "type": "paypal", |
| 37 | + "url": "https://www.paypal.com/donate/?hosted_button_id=ES9JRPSC66XKW" |
| 38 | + } |
| 39 | + ], |
| 40 | + "scripts": { |
| 41 | + "lint": "tsc && prettier --write . && eslint .", |
| 42 | + "test": "node --import tsx --test ./src/__tests__/*.test.ts", |
| 43 | + "build": "tsdown", |
| 44 | + "deploy": "semantic-release" |
| 45 | + }, |
| 46 | + "keywords": [ |
| 47 | + "next", |
| 48 | + "nextjs", |
| 49 | + "react", |
| 50 | + "rsc", |
| 51 | + "react server components", |
| 52 | + "mutation", |
| 53 | + "action", |
| 54 | + "actions", |
| 55 | + "react actions", |
| 56 | + "next actions", |
| 57 | + "server actions" |
| 58 | + ], |
| 59 | + "author": "Edoardo Ranghieri", |
| 60 | + "license": "MIT", |
| 61 | + "engines": { |
| 62 | + "node": ">=18.17" |
| 63 | + }, |
| 64 | + "dependencies": { |
| 65 | + "deepmerge-ts": "^7.1.5" |
| 66 | + }, |
| 67 | + "devDependencies": { |
| 68 | + "@eslint/js": "^9.19.0", |
| 69 | + "@types/node": "^22", |
| 70 | + "@types/react": "^19", |
| 71 | + "@types/react-dom": "^19", |
| 72 | + "@typescript-eslint/eslint-plugin": "^8.26.1", |
| 73 | + "@typescript-eslint/parser": "^8.26.1", |
| 74 | + "eslint": "catalog:", |
| 75 | + "eslint-config-prettier": "^9.1.0", |
| 76 | + "eslint-define-config": "^2.1.0", |
| 77 | + "eslint-plugin-react-hooks": "^5.1.0", |
| 78 | + "next": "catalog:", |
| 79 | + "react": "catalog:", |
| 80 | + "react-dom": "catalog:", |
| 81 | + "semantic-release": "^25.0.3", |
| 82 | + "tsdown": "^0.20.3", |
| 83 | + "tsx": "^4.19.2", |
| 84 | + "typescript": "catalog:", |
| 85 | + "typescript-eslint": "^8.22.0", |
| 86 | + "yup": "^1.6.1", |
| 87 | + "zod": "^3.24.1" |
| 88 | + }, |
| 89 | + "peerDependencies": { |
| 90 | + "next": ">= 14.0.0", |
| 91 | + "react": ">= 18.2.0", |
| 92 | + "react-dom": ">= 18.2.0" |
| 93 | + }, |
| 94 | + "repository": { |
| 95 | + "type": "git", |
| 96 | + "url": "https://github.com/TheEdoRan/next-safe-action.git" |
| 97 | + } |
96 | 98 | } |
0 commit comments