-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 962 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
37
{
"name": "@clipboard-health/config",
"description": "Type-safe static configuration management: a pure function to resolve, validate against a Zod schema, and freeze configuration values.",
"version": "0.10.9",
"bugs": "https://github.com/ClipboardHealth/core-utils/issues",
"dependencies": {
"@clipboard-health/util-ts": "3.0.0",
"decamelize": "5.0.1",
"dotenv": "16.4.7",
"tslib": "2.8.0",
"zod-validation-error": "3.4.0"
},
"devDependencies": {
"@clipboard-health/contract-core": "0.3.0",
"zod": "3.24.1"
},
"keywords": [
"config",
"typescript",
"zod"
],
"license": "MIT",
"main": "./src/index.js",
"peerDependencies": {
"zod": "^3"
},
"publishConfig": {
"access": "public"
},
"repository": {
"directory": "packages/config",
"type": "git",
"url": "git+https://github.com/ClipboardHealth/core-utils.git"
},
"type": "commonjs",
"typings": "./src/index.d.ts"
}