@xlameiro/env-typegen 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,107 @@
1
+ {
2
+ "name": "@xlameiro/env-typegen",
3
+ "version": "0.1.0",
4
+ "description": "Generate type-safe TypeScript definitions, Zod schemas, and t3-env config from .env.example files",
5
+ "keywords": [
6
+ "env",
7
+ "dotenv",
8
+ "typescript",
9
+ "type-safe",
10
+ "codegen",
11
+ "cli",
12
+ "generator",
13
+ "environment-variables",
14
+ "t3-env",
15
+ "zod",
16
+ "nextjs",
17
+ "t3-stack",
18
+ "env-vars",
19
+ "type-generator",
20
+ "declarations",
21
+ "dotenv-typegen",
22
+ "schema-generator",
23
+ "developer-tools",
24
+ "type-inference",
25
+ "build-tools"
26
+ ],
27
+ "homepage": "https://github.com/xabierlameiro/env-typegen",
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/xabierlameiro/env-typegen.git"
31
+ },
32
+ "bugs": {
33
+ "url": "https://github.com/xabierlameiro/env-typegen/issues"
34
+ },
35
+ "license": "MIT",
36
+ "author": "xabierlameiro",
37
+ "type": "module",
38
+ "main": "./dist/index.cjs",
39
+ "module": "./dist/index.js",
40
+ "types": "./dist/index.d.ts",
41
+ "bin": {
42
+ "env-typegen": "./dist/cli.js"
43
+ },
44
+ "exports": {
45
+ ".": {
46
+ "types": "./dist/index.d.ts",
47
+ "import": "./dist/index.js",
48
+ "require": "./dist/index.cjs"
49
+ },
50
+ "./package.json": "./package.json"
51
+ },
52
+ "files": [
53
+ "dist",
54
+ "README.md",
55
+ "LICENSE",
56
+ "CHANGELOG.md"
57
+ ],
58
+ "engines": {
59
+ "node": ">=18"
60
+ },
61
+ "scripts": {
62
+ "build": "tsup",
63
+ "dev": "tsup --watch",
64
+ "lint": "eslint --max-warnings=0 src tests",
65
+ "type-check": "tsc --noEmit",
66
+ "test": "vitest run",
67
+ "test:watch": "vitest",
68
+ "test:coverage": "vitest run --coverage",
69
+ "changeset": "changeset",
70
+ "version": "changeset version",
71
+ "release": "pnpm build && changeset publish",
72
+ "prepublishOnly": "pnpm build && pnpm lint && pnpm type-check && pnpm test"
73
+ },
74
+ "dependencies": {
75
+ "picocolors": "^1.1.1",
76
+ "chokidar": "^4.0.3",
77
+ "prettier": "^3.5.3"
78
+ },
79
+ "devDependencies": {
80
+ "@changesets/cli": "^2.28.1",
81
+ "@types/node": "^22.13.10",
82
+ "@typescript-eslint/eslint-plugin": "^8.26.1",
83
+ "@typescript-eslint/parser": "^8.26.1",
84
+ "@vitest/coverage-v8": "^4.1.0",
85
+ "eslint": "^9.21.0",
86
+ "tsup": "^8.4.0",
87
+ "typescript": "^5.8.2",
88
+ "vitest": "^4.1.0",
89
+ "zod": "^4.0.0"
90
+ },
91
+ "peerDependencies": {
92
+ "zod": ">=4.0.0",
93
+ "@t3-oss/env-nextjs": ">=0.10.0"
94
+ },
95
+ "peerDependenciesMeta": {
96
+ "zod": {
97
+ "optional": true
98
+ },
99
+ "@t3-oss/env-nextjs": {
100
+ "optional": true
101
+ }
102
+ },
103
+ "publishConfig": {
104
+ "access": "public",
105
+ "provenance": true
106
+ }
107
+ }