-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 875 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
{
"name": "frrm",
"type": "module",
"version": "1.4.2",
"description": "Tiny 0.5kb Zod-based, HTML form abstraction that goes brr.",
"author": "Schalk Venter <[email protected]> (http://schalkventer.me/)",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"scripts": {
"build": "microbundle"
},
"devDependencies": {
"@types/react": "^18.3.12",
"microbundle": "^0.15.1",
"react": "^18.3.1",
"zod": "^3.23.8"
},
"repository": {
"type": "git",
"url": "https://github.com/schalkventer/frrm.git"
},
"keywords": [
"zod",
"form"
],
"bugs": "https://github.com/schalkventer/frrm/issues",
"license": "MIT"
}