-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.01 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.01 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
{
"name": "nero-env",
"version": "1.0.1",
"description": "Validate and compare .env files to catch missing, empty, and unused variables.",
"type": "module",
"main": "dist/index.js",
"bin": {
"nero-env": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"keywords": [
"env",
"dotenv",
"environment-variables",
"env-validation",
"env-check",
"env-compare",
"config",
"cli",
"node-cli",
"developer-tools",
"devtools",
"nero"
],
"repository": {
"type": "git",
"url": "https://github.com/alcanivorax/nero-env"
},
"author": "alcanivorax",
"license": "MIT",
"packageManager": "pnpm@10.17.1",
"devDependencies": {
"@types/node": "^25.0.3",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"chalk": "^5.6.2",
"cli-update-check": "^1.0.0",
"commander": "^14.0.2"
}
}