-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 912 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
36
{
"name": "zod-dev",
"type": "module",
"version": "1.2.6",
"description": "Conditionally disables Zod run-time parsing in production while preserving type inference.",
"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": {
"microbundle": "^0.15.1",
"zod": "^3.22.4"
},
"repository": {
"type": "git",
"url": "https://github.com/schalkventer/zod-dev.git"
},
"keywords": [
"zod",
"env",
"runtime",
"environments",
"production"
],
"bugs": "https://github.com/schalkventer/zod-dev/issues",
"license": "MIT"
}