-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.55 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.55 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
54
{
"name": "envlock-cli",
"version": "1.0.7",
"description": "envlock-cli is a secure command-line interface for managing encrypted .env templates. Store configurations locally, protect each template with a unique password, and group them into containers (frontend, backend, staging). It’s ideal for securely setting up environments and protecting sensitive data during the development process.",
"main": "dist/index.js",
"scripts": {
"dev": "npx tsx src/index.ts",
"build": "npx tsc",
"start": "node dist/index.js",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"bin": {
"el": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/soirrex/envlock-cli.git"
},
"keywords": [
"cli",
"env",
"templates",
"encryption"
],
"author": "soirrex",
"license": "MIT",
"type": "module",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.2",
"eslint": "^10.2.0",
"globals": "^17.4.0",
"jest": "^30.3.0",
"jiti": "^2.6.1",
"prettier": "^3.8.1",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.3",
"inquirer": "^13.4.1",
"inversify": "^8.1.0",
"keytar": "^7.9.0",
"reflect-metadata": "^0.2.2",
"sequelize": "^6.37.8",
"sqlite3": "^6.0.1"
}
}