-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.34 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.34 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "dozen",
"version": "2.2.3",
"description": "Load config from a dozen sources, transform and validate with Zod, Valibot or ArkType",
"author": "Alex Schneider <me@schneider.ax>",
"license": "ISC",
"repository": "https://github.com/axtgr/dozen",
"keywords": [
"config",
"configuration",
"env",
"environment",
"variables",
"dotenv",
"argv",
"validate",
"validation",
"schema",
"zod"
],
"private": true,
"packageManager": "bun@1.3.6",
"engines": {
"node": ">=23.6.0",
"bun": ">=1.3.6"
},
"type": "module",
"main": "./dist/presets/node.js",
"files": [
"dist"
],
"exports": {
".": "./dist/presets/node.js",
"./base": "./dist/index.js",
"./plugins/*": "./dist/plugins/*.js"
},
"scripts": {
"test": "bun test ./src/**/*.test.ts",
"clean": "rimraf dist",
"build": "bun run clean && tsc"
},
"dependencies": {
"@fastify/deepmerge": "^3.1.0",
"@standard-schema/spec": "^1.1.0",
"chokidar": "^4.0.3",
"json5": "^2.2.3",
"mime": "^4.1.0",
"parse-gitignore": "^2.0.0",
"text-case": "^1.2.9"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/bun": "^1.3.6",
"@types/node": "^22.19.6",
"@types/parse-gitignore": "^1.0.2",
"rimraf": "^6.1.2",
"typescript": "^5.9.3",
"zod": "^4.3.5"
}
}