forked from alexmarqs/zod-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
143 lines (143 loc) · 3.66 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "zod-config",
"version": "0.1.0",
"description": "Load configuration variables from multiple sources with flexible adapters, ensuring type safety with Zod.",
"author": "Alexandre Marques",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"prepublishOnly": "pnpm build",
"type-check": "tsc --noEmit",
"format": "biome format ./src ./tests --write",
"lint": "biome lint ./src ./tests",
"test": "vitest run --silent",
"test:debug": "vitest run",
"test:watch": "vitest",
"prebuild": "pnpm run type-check",
"prerelease": "pnpm run build",
"release": "standard-version --skip.changelog",
"release:dry-run": "standard-version --skip.changelog --dry-run",
"yalc:publish": "yalc publish"
},
"files": [
"dist/**"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"module": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./env-adapter": {
"types": "./dist/env-adapter.d.ts",
"import": "./dist/env-adapter.mjs",
"module": "./dist/env-adapter.mjs",
"require": "./dist/env-adapter.js"
},
"./json-adapter": {
"types": "./dist/json-adapter.d.ts",
"import": "./dist/json-adapter.mjs",
"module": "./dist/json-adapter.mjs",
"require": "./dist/json-adapter.js"
},
"./dotenv-adapter": {
"types": "./dist/dotenv-adapter.d.ts",
"import": "./dist/dotenv-adapter.mjs",
"module": "./dist/dotenv-adapter.mjs",
"require": "./dist/dotenv-adapter.js"
},
"./script-adapter": {
"types": "./dist/script-adapter.d.ts",
"import": "./dist/script-adapter.mjs",
"module": "./dist/script-adapter.mjs",
"require": "./dist/script-adapter.js"
},
"./directory-adapter": {
"types": "./dist/directory-adapter.d.ts",
"import": "./dist/directory-adapter.mjs",
"module": "./dist/directory-adapter.mjs",
"require": "./dist/directory-adapter.js"
},
"./yaml-adapter": {
"types": "./dist/yaml-adapter.d.ts",
"import": "./dist/yaml-adapter.mjs",
"module": "./dist/yaml-adapter.mjs",
"require": "./dist/yaml-adapter.js"
}
},
"typesVersions": {
"*": {
"env-adapter": [
"./dist/env-adapter.d.ts"
],
"json-adapter": [
"./dist/json-adapter.d.ts"
],
"dotenv-adapter": [
"./dist/dotenv-adapter.d.ts"
],
"script-adapter": [
"./dist/script-adapter.d.ts"
],
"directory-adapter": [
"./dist/directory-adapter.d.ts"
],
"yaml-adapter": [
"./dist/yaml-adapter.d.ts"
]
}
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexmarqs/zod-config.git"
},
"bugs": {
"url": "https://github.com/alexmarqs/zod-config/issues"
},
"homepage": "https://github.com/alexmarqs/zod-config#readme",
"keywords": [
"zod",
"config",
"env",
"json",
"yaml",
"dotenv",
"typescript",
"adapters",
"typesafe"
],
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@types/node": "20.10.7",
"dotenv": "16.4.1",
"standard-version": "9.5.0",
"tsup": "6.7.0",
"typescript": "5.1.3",
"vitest": "1.1.3",
"zod": "3.22.4"
},
"peerDependencies": {
"dotenv": ">=15",
"yaml": "^2.x",
"zod": "^3.x"
},
"peerDependenciesMeta": {
"dotenv": {
"optional": true
},
"yaml": {
"optional": true
}
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "[email protected]"
}