couchloop-eq-mcp 1.0.5 → 1.1.0

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 +8 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "couchloop-eq-mcp",
3
- "version": "1.0.5",
3
+ "version": "1.1.0",
4
4
  "description": "Behavioral governance layer for LLMs - monitors for hallucination, inconsistency, tone drift, and unsafe reasoning while managing stateful AI sessions",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -58,7 +58,12 @@
58
58
  "vercel": "vercel",
59
59
  "vercel:prod": "vercel --prod",
60
60
  "server": "tsx src/server/index.ts",
61
- "server:dev": "tsx watch src/server/index.ts"
61
+ "server:dev": "tsx watch src/server/index.ts",
62
+ "security:check": "npm run security:secrets && npm run security:audit && npm run security:package",
63
+ "security:secrets": "node -e \"const{execSync}=require('child_process');try{const r=execSync('grep -rE \\\"(sk-|pk_live_|AKIA)[A-Za-z0-9]{20,}\\\" dist/ --include=*.js 2>/dev/null',{encoding:'utf8'});if(r.trim()){console.log(r);console.log('❌ Hardcoded secrets found!');process.exit(1)}}catch(e){}console.log('✅ No hardcoded secrets found')\"",
64
+ "security:audit": "npm audit --audit-level=high || true",
65
+ "security:package": "npm pack --dry-run 2>&1 | grep -E 'schema\\.|seed\\.|migrate\\.|oauth/' && echo '❌ Sensitive files in package!' && exit 1 || echo '✅ Package clean'",
66
+ "prepublishOnly": "npm run build && npm run security:check"
62
67
  },
63
68
  "keywords": [
64
69
  "mcp",
@@ -113,7 +118,7 @@
113
118
  "@typescript-eslint/eslint-plugin": "^6.15.0",
114
119
  "@typescript-eslint/parser": "^6.15.0",
115
120
  "@vercel/node": "^3.0.0",
116
- "drizzle-kit": "^0.20.18",
121
+ "drizzle-kit": "^0.31.8",
117
122
  "eslint": "^8.56.0",
118
123
  "tsx": "^4.6.2",
119
124
  "typescript": "^5.3.3",