-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.38 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
{
"name": "env-creator",
"version": "1.2.16",
"description": "A fast, lightweight CLI tool for managing and generating custom environment (`.env`) files",
"type": "module",
"bin": {
"env-creator": "./dist/cli.js",
"env": "./dist/cli.js"
},
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"lint": "eslint .",
"build": "esbuild src/index.js --bundle --platform=node --format=esm --target=node20 --minify --outfile=dist/index.js && printf '#!/usr/bin/env node\nimport(\"./index.js\");\n' > dist/cli.js && chmod +x dist/cli.js",
"build:pack": "pnpm run build && pnpm pack",
"prepublishOnly": "pnpm run lint && pnpm run build",
"version:patch": "pnpm version patch",
"version:minor": "pnpm version minor",
"version:major": "pnpm version major",
"publish:npm": "pnpm publish"
},
"keywords": [
"env",
".env",
"dotenv",
"environment",
"variables",
"node",
"custom",
"cli",
"generator"
],
"author": "Kyrylo Voronoi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kyrylovoronoi/env-creator.git"
},
"homepage": "https://github.com/kyrylovoronoi/env-creator",
"devDependencies": {
"@eslint/js": "^10.0.1",
"esbuild": "^0.27.3",
"eslint": "^10.0.3",
"globals": "^17.4.0"
}
}