-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.47 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
{
"name": "envnest",
"version": "0.0.13",
"private": false,
"keywords": [
".env",
"nestjs",
"zod",
"@nestjs/env",
"env",
"environment",
"variables",
"typesafe",
"dotenv",
"config",
"nestjs-env",
"validation",
"validator",
"env-variables",
"env-config",
"env-nestjs",
"env-zod",
"env-nestjs-zod",
"env-nestjs-zod-validation",
"typesafe-env"
],
"description": "Typesafe environment variables for NestJS using zod.",
"homepage": "https://github.com/broisnischal/nestenv",
"repository": {
"type": "git",
"url": "https://github.com/broisnischal/nestenv"
},
"sponsor": {
"url": "https://nischal.pro"
},
"author": {
"name": "Nischal Dahal",
"url": "https://nischal-dahal.com.np",
"email": "[email protected]"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": ["dist", "package.json", "LICENSE", "README.md"],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "bunchee -w --no-clean",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check . --apply",
"test": "vitest run",
"release": "pnpm run lint:fix && pnpm run test && pnpm run build && changeset publish --access public",
"local-release": "pnpm run lint:fix && pnpm run test && pnpm run build && changeset version && changeset publish",
"changelog": "changeset changelog",
"patch": "pnpm run release --patch",
"minor": "pnpm run release --minor",
"major": "pnpm run release --major",
"prepack": "pnpm run lint:fix && pnpm run build",
"vscode:prepublish": "pnpm run build",
"cs": "pnpm changeset",
"watch": "pnpm run build --watch",
"link": "pnpm link --global remix-zod-validator",
"unlink": "pnpm unlink --global remix-zod-validator",
"link-cli": "pnpm run unlink && pnpm run link"
},
"dependencies": {
"@nestjs/config": "^3"
},
"peerDependencies": {
"@nestjs/config": "^3.2.3",
"typescript": ">=5.0.0",
"zod": "^3.23.8"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@types/node": "^22.7.4",
"bunchee": "^5.5.1",
"expect-type": "^1.0.0",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vitest": "^2.1.2"
},
"packageManager": "[email protected]+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b"
}