snow-flow 4.6.6 → 4.6.7

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 +3 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "snow-flow",
3
- "version": "4.6.6",
4
- "description": "BULLETPROOF MCP PERSISTENCE - v4.6.6 implements comprehensive protection against ALL MCP server shutdown mechanisms. Added MCPPersistentGuard with process.kill override, disabled all shutdown methods in TypeScript source, eliminated cleanup timers for truly eternal server operation.",
3
+ "version": "4.6.7",
4
+ "description": "CLEAN SOURCE REPOSITORY - v4.6.7 removes all built dist/ files from git for proper source code transparency. Only TypeScript source code tracked in git, dist/ built during NPM publish via prepublishOnly. Maintains bulletproof MCP persistence features.",
5
5
  "main": "dist/index.js",
6
6
  "type": "commonjs",
7
7
  "bin": {
@@ -9,6 +9,7 @@
9
9
  },
10
10
  "scripts": {
11
11
  "build": "tsc --noEmitOnError false || true",
12
+ "prepublishOnly": "npm run build",
12
13
  "dev": "tsc --watch",
13
14
  "start": "node dist/index.js",
14
15
  "test": "jest",