keyra-cli 0.1.1 → 0.1.3
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 +31 -29
- package/LICENSE +0 -21
- package/README.md +0 -177
- package/cli/package-lock.json +0 -2579
- package/cli/package.json +0 -40
- /package/{cli/dist → dist}/index.js +0 -0
package/cli/package.json
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "keyra-cli",
|
|
3
|
-
"version": "0.1.1",
|
|
4
|
-
"description": "Encrypted .env vault. Sync, share, and never lose an API key.",
|
|
5
|
-
"bin": {
|
|
6
|
-
"keyra": "./dist/index.js"
|
|
7
|
-
},
|
|
8
|
-
"files": [
|
|
9
|
-
"dist"
|
|
10
|
-
],
|
|
11
|
-
"scripts": {
|
|
12
|
-
"build": "tsup src/index.ts --format esm --target node18 --clean --shims",
|
|
13
|
-
"dev": "tsup src/index.ts --format esm --target node18 --watch --shims",
|
|
14
|
-
"prepublishOnly": "npm run build"
|
|
15
|
-
},
|
|
16
|
-
"keywords": [
|
|
17
|
-
"env",
|
|
18
|
-
"dotenv",
|
|
19
|
-
"secrets",
|
|
20
|
-
"vault",
|
|
21
|
-
"cli",
|
|
22
|
-
"encryption"
|
|
23
|
-
],
|
|
24
|
-
"license": "MIT",
|
|
25
|
-
"type": "module",
|
|
26
|
-
"dependencies": {
|
|
27
|
-
"boxen": "^8.0.1",
|
|
28
|
-
"chalk": "^5.6.2",
|
|
29
|
-
"commander": "^14.0.3",
|
|
30
|
-
"inquirer": "^13.2.5",
|
|
31
|
-
"open": "^11.0.0",
|
|
32
|
-
"ora": "^9.3.0"
|
|
33
|
-
},
|
|
34
|
-
"devDependencies": {
|
|
35
|
-
"@types/inquirer": "^9.0.9",
|
|
36
|
-
"@types/node": "^25.2.3",
|
|
37
|
-
"tsup": "^8.5.1",
|
|
38
|
-
"typescript": "^5.9.3"
|
|
39
|
-
}
|
|
40
|
-
}
|
|
File without changes
|