@keywaysh/cli 0.0.7 → 0.0.9

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 +2 -2
  2. package/package.json +12 -14
package/dist/cli.js CHANGED
@@ -68,7 +68,7 @@ var INTERNAL_POSTHOG_HOST = "https://eu.i.posthog.com";
68
68
  // package.json with { type: 'json' }
69
69
  var package_default = {
70
70
  name: "@keywaysh/cli",
71
- version: "0.0.7",
71
+ version: "0.0.9",
72
72
  description: "One link to all your secrets",
73
73
  type: "module",
74
74
  bin: {
@@ -280,7 +280,7 @@ import fs from "fs";
280
280
  // package.json
281
281
  var package_default2 = {
282
282
  name: "@keywaysh/cli",
283
- version: "0.0.7",
283
+ version: "0.0.9",
284
284
  description: "One link to all your secrets",
285
285
  type: "module",
286
286
  bin: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keywaysh/cli",
3
- "version": "0.0.7",
3
+ "version": "0.0.9",
4
4
  "description": "One link to all your secrets",
5
5
  "type": "module",
6
6
  "bin": {
@@ -10,17 +10,6 @@
10
10
  "files": [
11
11
  "dist"
12
12
  ],
13
- "scripts": {
14
- "dev": "pnpm exec tsx src/cli.ts",
15
- "build": "pnpm exec tsup",
16
- "build:watch": "pnpm exec tsup --watch",
17
- "prepublishOnly": "pnpm run build",
18
- "test": "pnpm exec vitest run",
19
- "test:watch": "pnpm exec vitest",
20
- "release": "npm version patch && git push && git push --tags",
21
- "release:minor": "npm version minor && git push && git push --tags",
22
- "release:major": "npm version major && git push && git push --tags"
23
- },
24
13
  "keywords": [
25
14
  "secrets",
26
15
  "env",
@@ -38,7 +27,6 @@
38
27
  "bugs": {
39
28
  "url": "https://github.com/keywaysh/cli/issues"
40
29
  },
41
- "packageManager": "pnpm@10.6.1",
42
30
  "engines": {
43
31
  "node": ">=18.0.0"
44
32
  },
@@ -57,5 +45,15 @@
57
45
  "tsx": "^4.20.3",
58
46
  "typescript": "^5.9.2",
59
47
  "vitest": "^3.2.4"
48
+ },
49
+ "scripts": {
50
+ "dev": "pnpm exec tsx src/cli.ts",
51
+ "build": "pnpm exec tsup",
52
+ "build:watch": "pnpm exec tsup --watch",
53
+ "test": "pnpm exec vitest run",
54
+ "test:watch": "pnpm exec vitest",
55
+ "release": "npm version patch && git push && git push --tags",
56
+ "release:minor": "npm version minor && git push && git push --tags",
57
+ "release:major": "npm version major && git push && git push --tags"
60
58
  }
61
- }
59
+ }