generated from sanjib-sen/starter-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 3.45 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
{
"name": "envshh",
"version": "0.0.26-1",
"description": "A command line tool to securely and automatically manage, store environment variables.",
"type": "module",
"scripts": {
"lint": "eslint --fix .",
"format": "prettier -w . --log-level warn",
"clean": "$npm_execpath run clean:win32 && $npm_execpath run clean:unix",
"clean:win32": "node -e \"if (process.platform === 'win32') process.exit(1)\" || , if exist dist rmdir /Q /S dist builds",
"clean:unix": "node -e \"if (process.platform !== 'win32') process.exit(1)\" || rm -rf dist builds",
"build": "$npm_execpath run clean && $npm_execpath run lint && $npm_execpath run format && node esbuild.mjs",
"test": "$npm_execpath run build && $npm_execpath run compile && ./builds/envshh -v",
"register": "$npm_execpath run build && cd dist && $npm_execpath install -g .",
"postversion": "npx npm-check-updates -u && $npm_execpath install && $npm_execpath run build && $npm_execpath run compile && ./builds/envshh -v",
"prepare": "husky install",
"compile": "pkg ./dist/envshh.cjs --out-path=./builds -t latest",
"compile:linux-x64": "pkg ./dist/envshh.cjs --out-path=./builds/linux/x64 -t latest-linux-x64",
"compile:win-x64": "pkg ./dist/envshh.cjs --out-path=./builds/win/x64 -t latest-win-x64",
"compile:mac-x64": "pkg ./dist/envshh.cjs --out-path=./builds/mac/x64 -t latest-mac-x64",
"compile:linx-arm64": "pkg ./dist/envshh.cjs --out-path=./builds/linux/arm64 -t latest-linux-arm64",
"compile:win-arm64": "pkg ./dist/envshh.cjs --out-path=./builds/win/arm64 -t latest-win-arm64",
"compile:mac-arm64": "pkg ./dist/envshh.cjs --out-path=./builds/mac/arm64 -t latest-mac-arm64",
"compile:linux": "$npm_execpath run compile:linux-x64 && $npm_execpath run compile:linx-arm64",
"compile:win": "$npm_execpath run compile:win-x64 && $npm_execpath run compile:win-arm64",
"compile:mac": "$npm_execpath run compile:mac-x64 && $npm_execpath run compile:mac-arm64",
"compile:x64": "$npm_execpath run compile:linux-x64 && $npm_execpath run compile:win-x64 && $npm_execpath run compile:mac-x64",
"compile:arm64": "$npm_execpath run compile:linux-arm64 && $npm_execpath run compile:win-arm64 && $npm_execpath run compile:mac-arm64",
"compile:all": "$npm_execpath run build && $npm_execpath run compile:x64 && $npm_execpath run compile:arm64"
},
"bin": {
"envshh": "./envshh.cjs"
},
"repository": {
"type": "git",
"url": "https://github.com/sanjib-sen/envshh.git"
},
"homepage": "https://sanjib-sen.github.io/envshh",
"keywords": [
"dotenv",
"env",
"envshh",
"commandline",
"cli",
"environment"
],
"author": "Sanjib Kumar Sen <[email protected]>",
"license": "MIT",
"peerDependencies": {
"commander": "~11.0.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/figlet": "^1.5.6",
"@types/node": "^20.6.1",
"@types/readline-sync": "^1.4.4",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"husky": "^8.0.3",
"pkg": "^5.8.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@commander-js/extra-typings": "~11.0.0",
"chalk": "^5.3.0",
"esbuild": "^0.19.3",
"eslint-plugin-import": "^2.28.1",
"lowdb": "^6.0.1",
"readline-sync": "^1.4.10",
"zod": "^3.22.2"
}
}