envlope 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "envlope",
3
+ "version": "0.1.0",
4
+ "description": "Encrypt your .env file with a key, push it to git safely, unlock with the same key.",
5
+ "keywords": [
6
+ "env",
7
+ "dotenv",
8
+ "encryption",
9
+ "secrets",
10
+ "cli",
11
+ "aes-256-gcm",
12
+ "git"
13
+ ],
14
+ "license": "MIT",
15
+ "author": "Mohamad <mohamad@4ow4.com>",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/Moh-jbr/envlope.git"
19
+ },
20
+ "homepage": "https://github.com/Moh-jbr/envlope#readme",
21
+ "bugs": {
22
+ "url": "https://github.com/Moh-jbr/envlope/issues"
23
+ },
24
+ "type": "module",
25
+ "main": "dist/cli.cjs",
26
+ "module": "dist/cli.js",
27
+ "bin": {
28
+ "envlope": "dist/cli.js"
29
+ },
30
+ "files": [
31
+ "dist",
32
+ "README.md",
33
+ "LICENSE",
34
+ "CHANGELOG.md"
35
+ ],
36
+ "scripts": {
37
+ "build": "tsup",
38
+ "dev": "tsx src/cli.ts",
39
+ "test": "vitest run",
40
+ "test:watch": "vitest",
41
+ "typecheck": "tsc --noEmit",
42
+ "format": "prettier --write ."
43
+ },
44
+ "engines": {
45
+ "node": ">=18"
46
+ },
47
+ "dependencies": {
48
+ "@clack/prompts": "^0.7.0",
49
+ "commander": "^12.1.0",
50
+ "picocolors": "^1.0.1",
51
+ "update-notifier": "^7.3.1"
52
+ },
53
+ "devDependencies": {
54
+ "@types/node": "^20.12.12",
55
+ "@types/update-notifier": "^6.0.8",
56
+ "prettier": "^3.3.0",
57
+ "tsup": "^8.1.0",
58
+ "tsx": "^4.11.0",
59
+ "typescript": "^5.4.5",
60
+ "vitest": "^1.6.0"
61
+ }
62
+ }