-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.33 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
{
"name": "confidante",
"version": "0.3.0",
"description": "🔐 Securely share your environment files through password managers",
"author": "Matteo Rigon @reegodev",
"bin": {
"confidante": "./bin/run"
},
"homepage": "https://github.com/reegodev/confidante",
"license": "MIT",
"main": "dist/index.js",
"repository": "reegodev/confidante",
"files": [
"/bin",
"/dist",
"README.md",
"package.json",
"pnpm-lock.yaml"
],
"dependencies": {
"@commander-js/extra-typings": "^10.0.3",
"chalk": "^4.0.0",
"commander": "^10.0.0",
"figures": "^3.0.0"
},
"devDependencies": {
"@types/node": "^16.18.20",
"@vitest/coverage-c8": "^0.29.8",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.8.0",
"nyc": "^15.1.0",
"prettier": "^2.8.7",
"shx": "^0.3.3",
"stdout-stderr": "^0.1.13",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vitest": "^0.29.8"
},
"scripts": {
"dev": "node -r ts-node/register src/index.ts",
"preinstall": "npx only-allow pnpm",
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts --config .eslintrc",
"test": "vitest --dir tests",
"coverage": "vitest run --coverage"
},
"types": "dist/index.d.ts",
"engines": {
"node": ">=12.0.0"
},
"bugs": "https://github.com/reegodev/confidante/issues"
}