@keywaysh/cli 0.1.4 → 0.1.6

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.
Files changed (2) hide show
  1. package/dist/cli.js +485 -293
  2. package/package.json +20 -13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keywaysh/cli",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "One link to all your secrets",
5
5
  "type": "module",
6
6
  "bin": {
@@ -10,6 +10,19 @@
10
10
  "files": [
11
11
  "dist"
12
12
  ],
13
+ "scripts": {
14
+ "dev": "pnpm exec tsx src/cli.ts",
15
+ "dev:local": "NODE_TLS_REJECT_UNAUTHORIZED=0 KEYWAY_API_URL=https://localhost/api pnpm exec tsx src/cli.ts",
16
+ "build": "pnpm exec tsup",
17
+ "build:watch": "pnpm exec tsup --watch",
18
+ "prepublishOnly": "pnpm run build",
19
+ "test": "pnpm exec vitest run",
20
+ "test:watch": "pnpm exec vitest",
21
+ "test:coverage": "pnpm exec vitest run --coverage",
22
+ "release": "npm version patch && git push && git push --tags",
23
+ "release:minor": "npm version minor && git push && git push --tags",
24
+ "release:major": "npm version major && git push && git push --tags"
25
+ },
13
26
  "keywords": [
14
27
  "secrets",
15
28
  "env",
@@ -27,10 +40,12 @@
27
40
  "bugs": {
28
41
  "url": "https://github.com/keywaysh/cli/issues"
29
42
  },
43
+ "packageManager": "pnpm@10.6.1",
30
44
  "engines": {
31
45
  "node": ">=18.0.0"
32
46
  },
33
47
  "dependencies": {
48
+ "balanced-match": "^3.0.1",
34
49
  "commander": "^14.0.0",
35
50
  "conf": "^15.0.2",
36
51
  "open": "^11.0.0",
@@ -39,22 +54,14 @@
39
54
  "prompts": "^2.4.2"
40
55
  },
41
56
  "devDependencies": {
57
+ "@types/balanced-match": "^3.0.2",
42
58
  "@types/node": "^24.2.0",
43
59
  "@types/prompts": "^2.4.9",
60
+ "@vitest/coverage-v8": "^3.0.0",
61
+ "msw": "^2.12.4",
44
62
  "tsup": "^8.5.0",
45
63
  "tsx": "^4.20.3",
46
64
  "typescript": "^5.9.2",
47
65
  "vitest": "^3.2.4"
48
- },
49
- "scripts": {
50
- "dev": "pnpm exec tsx src/cli.ts",
51
- "dev:local": "NODE_TLS_REJECT_UNAUTHORIZED=0 KEYWAY_API_URL=https://localhost/api pnpm exec tsx src/cli.ts",
52
- "build": "pnpm exec tsup",
53
- "build:watch": "pnpm exec tsup --watch",
54
- "test": "pnpm exec vitest run",
55
- "test:watch": "pnpm exec vitest",
56
- "release": "npm version patch && git push && git push --tags",
57
- "release:minor": "npm version minor && git push && git push --tags",
58
- "release:major": "npm version major && git push && git push --tags"
59
66
  }
60
- }
67
+ }