autotel-pact 0.2.0 → 0.2.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autotel-pact",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "Runtime evidence for Pact contracts — autotel bridge that records which contract interactions were actually exercised, and audits 'contracted but never observed'.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -56,16 +56,6 @@
56
56
  "schemas",
57
57
  "README.md"
58
58
  ],
59
- "scripts": {
60
- "build": "tsup",
61
- "dev": "tsup --watch",
62
- "lint": "eslint src/**/*.ts",
63
- "lint:fix": "eslint src/**/*.ts --fix",
64
- "type-check": "tsc --noEmit",
65
- "test": "vitest run",
66
- "test:watch": "vitest",
67
- "clean": "rimraf dist"
68
- },
69
59
  "keywords": [
70
60
  "autotel",
71
61
  "pact",
@@ -80,7 +70,7 @@
80
70
  "license": "MIT",
81
71
  "peerDependencies": {
82
72
  "@pact-foundation/pact": ">=16",
83
- "autotel": "workspace:*"
73
+ "autotel": "3.3.1"
84
74
  },
85
75
  "peerDependenciesMeta": {
86
76
  "@pact-foundation/pact": {
@@ -90,11 +80,11 @@
90
80
  "devDependencies": {
91
81
  "@pact-foundation/pact": "^16.5.0",
92
82
  "@types/node": "^25.9.1",
93
- "autotel": "workspace:*",
94
83
  "rimraf": "^6.1.3",
95
84
  "tsup": "^8.5.1",
96
85
  "typescript": "^6.0.3",
97
- "vitest": "^4.1.7"
86
+ "vitest": "^4.1.7",
87
+ "autotel": "3.3.1"
98
88
  },
99
89
  "repository": {
100
90
  "type": "git",
@@ -104,5 +94,15 @@
104
94
  "bugs": {
105
95
  "url": "https://github.com/jagreehal/autotel/issues"
106
96
  },
107
- "homepage": "https://github.com/jagreehal/autotel/tree/main/packages/autotel-pact#readme"
108
- }
97
+ "homepage": "https://github.com/jagreehal/autotel/tree/main/packages/autotel-pact#readme",
98
+ "scripts": {
99
+ "build": "tsup",
100
+ "dev": "tsup --watch",
101
+ "lint": "eslint src/**/*.ts",
102
+ "lint:fix": "eslint src/**/*.ts --fix",
103
+ "type-check": "tsc --noEmit",
104
+ "test": "vitest run",
105
+ "test:watch": "vitest",
106
+ "clean": "rimraf dist"
107
+ }
108
+ }