-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 788 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 788 Bytes
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
{
"name": "smart-env-helper",
"version": "1.0.1",
"description": "Type-safe .env validator and generator for Node.js and MERN stack projects",
"main": "dist/index.js",
"bin": {
"smart-env-helper": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"validate": "ts-node src/cli.ts validate",
"generate": "ts-node src/cli.ts generate"
},
"keywords": [
"env",
"typescript",
"validator",
"cli",
"mern",
"dotenv"
],
"author": "Haseeb MernStack",
"license": "MIT",
"dependencies": {
"chalk": "^5.6.2",
"dotenv": "^16.6.1",
"fs-extra": "^11.3.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/yargs": "^17.0.33",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}