forked from rileytomasek/zodix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.5 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.5 KB
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
{
"name": "zodix",
"version": "0.4.4",
"description": "Parse React Router 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/**/*.ts",
"prepare": "yarn build",
"prepublishOnly": "yarn lint && yarn typecheck",
"test": "vitest",
"release": "np",
"typecheck": "tsc"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"esbuild": "^0.15.10",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^4.3.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"np": "7.6.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^7.0.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0",
"vite": "^3.1.7",
"vitest": "^0.24.1",
"zod": "^3.19.1"
},
"peerDependencies": {
"react-router": "^7.0.0",
"zod": "^3.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"packageManager": "yarn@1.22.19",
"prettier": {
"singleQuote": true
}
}