@modular-intelligence/wireshark 1.0.0 → 1.0.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 (2) hide show
  1. package/dist/index.js +2095 -1297
  2. package/package.json +5 -2
package/package.json CHANGED
@@ -1,11 +1,14 @@
1
1
  {
2
2
  "name": "@modular-intelligence/wireshark",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "MCP server wrapping tshark for network protocol analysis of PCAP files",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
+ "bin": {
8
+ "mcp-wireshark": "./dist/index.js"
9
+ },
7
10
  "scripts": {
8
- "build": "bun build src/index.ts --outdir dist --target bun",
11
+ "build": "bun build src/index.ts --outdir dist --target node",
9
12
  "start": "bun run src/index.ts",
10
13
  "typecheck": "tsc --noEmit",
11
14
  "clean": "rm -rf dist"