@kya-os/contracts 1.7.18 → 1.7.20

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 +14 -15
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kya-os/contracts",
3
- "version": "1.7.18",
3
+ "version": "1.7.20",
4
4
  "description": "Shared contracts, types, and schemas for MCP-I framework",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -82,21 +82,10 @@
82
82
  "default": "./dist/reputation/index.js"
83
83
  }
84
84
  },
85
- "scripts": {
86
- "build": "tsc -p tsconfig.build.json && npm run emit-schemas",
87
- "emit-schemas": "node scripts/emit-schemas.js",
88
- "test": "vitest run",
89
- "test:coverage": "vitest run --coverage",
90
- "test:watch": "vitest",
91
- "lint": "eslint .",
92
- "format": "prettier --write \"src/**/*.{ts,tsx}\"",
93
- "clean": "rm -rf dist .turbo node_modules",
94
- "prepublishOnly": "npm run build && node ../create-mcpi-app/scripts/validate-no-workspace.js"
95
- },
96
85
  "sideEffects": false,
97
86
  "dependencies": {
98
- "@kya-os/consent": "^0.1.20",
99
- "zod": "^3.25.76"
87
+ "zod": "^3.25.76",
88
+ "@kya-os/consent": "^0.1.22"
100
89
  },
101
90
  "devDependencies": {
102
91
  "@types/node": "^20.14.9",
@@ -112,5 +101,15 @@
112
101
  ],
113
102
  "publishConfig": {
114
103
  "access": "public"
104
+ },
105
+ "scripts": {
106
+ "build": "tsc -p tsconfig.build.json && npm run emit-schemas",
107
+ "emit-schemas": "node scripts/emit-schemas.js",
108
+ "test": "vitest run",
109
+ "test:coverage": "vitest run --coverage",
110
+ "test:watch": "vitest",
111
+ "lint": "eslint .",
112
+ "format": "prettier --write \"src/**/*.{ts,tsx}\"",
113
+ "clean": "rm -rf dist .turbo node_modules"
115
114
  }
116
- }
115
+ }