@webstew/agent-tools 0.1.1 → 0.1.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.
Files changed (1) hide show
  1. package/package.json +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webstew/agent-tools",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "MCP server exposing Webstew CMS, integrations, image, grader, and workspace tools to Claude Code via the local bridge.",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -13,7 +13,7 @@
13
13
  "README.md"
14
14
  ],
15
15
  "scripts": {
16
- "build": "tsc && node -e \"const fs=require('fs'),f='dist/index.js';let c=fs.readFileSync(f,'utf8');c=c.replace(/^#!.*\\n/,'');fs.writeFileSync(f,'#!/usr/bin/env node\\n'+c);fs.chmodSync(f,0o755)\"",
16
+ "build": "tsc && node scripts/fix-shebang.js dist/index.js",
17
17
  "prepack": "npm run build",
18
18
  "dev": "tsx src/index.ts"
19
19
  },