-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2.02 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "remix-easy-mode",
"version": "0.2.2",
"author": {
"name": "Sam Cook",
"email": "[email protected]",
"url": "https://samcook.cc"
},
"license": "MIT",
"description": "Opinionated toolkit for developing highly interactive, typesafe Remix apps. Built with zod, and inspired by the TRPC / React Query DX. Provides automatic client and server-side form validations, typesafe form input fields, automatic error handling and easy-to-display error messages, typesafe session middleware support, typesafe session and input values in server-side functions, and typesafe form input values and fetcher responses in client-side hooks and components.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"@kiruna/form-data": "0.0.0-alpha.31"
},
"devDependencies": {
"@remix-run/eslint-config": "^2.2.0",
"@remix-run/react": "^2.2.0",
"@remix-run/server-runtime": "^2.2.0",
"@types/react": "^18.2.33",
"eslint": "^8.52.0",
"react": "^18.2.0",
"rimraf": "^5.0.5",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"zod": "^3.22.4"
},
"peerDependencies": {
"@remix-run/react": ">=2.0.0",
"@remix-run/server-runtime": ">=2.0.0",
"react": ">=18",
"zod": ">=3"
},
"scripts": {
"dev": "rimraf dist && tsup index.ts --format cjs,esm --dts --watch",
"build": "rimraf dist && tsup index.ts --format cjs,esm --dts",
"lint": "tsc",
"publish-beta": "npm publish --tag beta"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sjc5/remix-easy-mode.git"
},
"homepage": "https://github.com/sjc5/remix-easy-mode",
"bugs": "https://github.com/sjc5/remix-easy-mode/issues",
"keywords": [
"remix",
"typescript",
"typesafe",
"zod",
"api",
"react",
"query",
"mutation",
"action",
"loader",
"forms",
"validation",
"form validation",
"trpc",
"bouncer",
"session",
"middleware"
],
"sideEffects": false
}