-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.08 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
{
"name": "env-config-parse",
"version": "0.1.0",
"description": "Robust and type-safe environment variable configuration parser",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"keywords": [
"env",
"config",
"configuration",
"parser",
"template",
"typescript",
"zod"
],
"license": "MIT",
"peerDependencies": {
"zod": "^3.0.0"
},
"peerDependenciesMeta": {
"zod": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"zod": "^3.0.0"
},
"author": "Benedict Johannes <yappy.benedict@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/benedictjohannes/env-config-parse.git"
},
"bugs": {
"url": "https://github.com/benedictjohannes/env-config-parse/issues"
},
"homepage": "https://github.com/benedictjohannes/env-config-parse#readme"
}