-
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) · 842 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 842 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": "@strv/shh",
"version": "0.6.7",
"description": "CLI tool to manage versioned environment variable files using git-crypt",
"author": "Lucas Constantino Silva <lucasconstantinosilva@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/strvcom/shh",
"main": "./dist/index.js",
"private": false,
"bin": {
"shh": "./run"
},
"files": [
"/bin",
"/dist",
"README.md"
],
"scripts": {
"clean": "rm -Rf ./dist",
"build": "npm run clean && tsc",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/node": "^20.1.3",
"typescript": "^5.0.4"
},
"dependencies": {
"commander": "^10.0.1",
"dotenv": "^16.0.3",
"glob": "^10.2.3",
"inquirer": "^8.0.0",
"log-update": "4.x.x",
"tempy": "1.x.x"
}
}