forked from pablo-abc/felte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.49 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
{
"name": "@felte/validator-zod",
"version": "1.0.10",
"description": "A package to use Zod validation with Felte",
"main": "dist/index.cjs",
"browser": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"sideEffects": false,
"author": {
"name": "Pablo Berganza",
"email": "[email protected]",
"url": "https://pablo.berganza.dev"
},
"repository": "github:pablo-abc/felte",
"homepage": "https://github.com/pablo-abc/felte/tree/main/packages/validator-zod",
"keywords": [
"svelte",
"forms",
"validation",
"felte",
"zod"
],
"scripts": {
"prebuild": "rimraf ./dist",
"build": "pnpm prebuild && cross-env NODE_ENV=production rollup -c",
"dev": "rollup -cw",
"prepublishOnly": "pnpm build && pnpm test",
"test": "uvu -r tsm -r global-jsdom/register tests -i common",
"test:ci": "nyc -n src pnpm test"
},
"files": [
"dist"
],
"license": "MIT",
"dependencies": {
"@felte/common": "workspace:*"
},
"devDependencies": {
"@felte/core": "workspace:*",
"felte": "workspace:*",
"svelte": "^3.46.4",
"zod": "^3.2.0"
},
"peerDependencies": {
"zod": "^3.2.0"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
},
"./package.json": "./package.json"
}
}