generated from egoist/ts-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 989 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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@teamreflex/typed-action",
"version": "1.0.1",
"description": "Zod validated React server actions",
"repository": {
"type": "git",
"url": "https://github.com/teamreflex/typed-action.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "./dist/index.d.ts",
"scripts": {
"build-fast": "tsup src/index.ts --format cjs,esm",
"build": "pnpm run build-fast -- --dts-resolve",
"test": "vitest run",
"prepublishOnly": "pnpm run build"
},
"license": "MIT",
"devDependencies": {
"@egoist/prettier-config": "1.0.0",
"prettier": "2.8.4",
"tsup": "8.0.2",
"typescript": "5.3.3",
"vitest": "1.3.1"
},
"dependencies": {
"zod": "^3.22.4"
},
"keywords": [
"react",
"next",
"server-action",
"rsc",
"zod"
]
}