dc-ops-cli 1.1.0 → 1.1.1

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 (1) hide show
  1. package/package.json +11 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dc-ops-cli",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Easy secret retrieval from 1Password with smart fallbacks",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -13,6 +13,10 @@
13
13
  "publishConfig": {
14
14
  "access": "public"
15
15
  },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/dallascrilley/op-cli-helper.git"
19
+ },
16
20
  "scripts": {
17
21
  "build:bin": "bun build --compile src/index.ts --outfile bin/ops",
18
22
  "build": "tsc",
@@ -20,7 +24,9 @@
20
24
  "typecheck": "tsc --noEmit",
21
25
  "lint": "tsc --noEmit",
22
26
  "test": "TS_NODE_TRANSPILE_ONLY=1 node --test --loader ts-node/esm",
23
- "prepublishOnly": "npm run build"
27
+ "prepublishOnly": "npm run build",
28
+ "release": "semantic-release --dry-run",
29
+ "release:ci": "semantic-release"
24
30
  },
25
31
  "keywords": [
26
32
  "1password",
@@ -40,9 +46,12 @@
40
46
  "ora": "^7.0.1"
41
47
  },
42
48
  "devDependencies": {
49
+ "@semantic-release/changelog": "^6.0.3",
50
+ "@semantic-release/git": "^10.0.1",
43
51
  "@types/cross-spawn": "^6.0.2",
44
52
  "@types/inquirer": "^9.0.7",
45
53
  "@types/node": "^20.10.6",
54
+ "semantic-release": "^25.0.2",
46
55
  "ts-node": "^10.9.2",
47
56
  "typescript": "^5.3.3"
48
57
  },