-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 967 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 967 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
37
38
39
40
41
{
"name": "wenvi",
"version": "1.5.0",
"description": "A environment management cli for dealing with .env in whitelabel apps",
"main": "index.js",
"author": "Fernando Petri",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Petri-Hub/Wenvi"
},
"scripts": {
"dev": "nodemon",
"build": "tsc",
"format": "prettier --write src/**/*.ts",
"prepublishOnly": "npm run build"
},
"bin": {
"wenvi": "./dist/index.js"
},
"private": false,
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.1",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@types/crypto-js": "^4.2.2",
"@types/prompt": "^1.1.9",
"chalk": "4.1.2",
"cli-table3": "^0.6.5",
"clipboardy": "2.3.0",
"crypto-js": "^4.2.0",
"fs-extra": "^11.2.0",
"open": "7",
"prettier": "^3.4.2",
"prompt": "^1.3.0"
}
}