-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
54 lines (54 loc) · 1.25 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
{
"name": "zodix",
"version": "0.4.4",
"description": "Parse Remix loaders and actions with Zod",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": "rileytomasek/zodix",
"author": {
"name": "Riley Tomasek",
"email": "hi@rile.yt",
"url": "https://rile.yt"
},
"license": "MIT",
"private": false,
"scripts": {
"build": "node build.js && tsc -b",
"lint": "eslint src",
"prepare": "yarn build",
"prepublishOnly": "yarn lint && yarn typecheck",
"test": "vitest",
"release": "np",
"typecheck": "tsc"
},
"devDependencies": {
"@remix-run/eslint-config": "^1.7.2",
"@remix-run/node": "^1.7.2",
"@remix-run/server-runtime": "^1.7.2",
"esbuild": "^0.15.10",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"np": "7.6.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.8.4",
"vite": "^3.1.7",
"vitest": "^0.24.1",
"zod": "^3.19.1"
},
"peerDependencies": {
"@remix-run/server-runtime": "1.x || 2.x",
"zod": "3.x"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"packageManager": "yarn@1.22.19",
"prettier": {
"singleQuote": true
}
}