circuit-mcp 1.0.5 → 1.0.6

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/package.json +1 -1
  2. package/publish.sh +0 -21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "circuit-mcp",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Circuit MCP server for Cursor and Claude Code",
5
5
  "type": "module",
6
6
  "bin": {
package/publish.sh DELETED
@@ -1,21 +0,0 @@
1
- #!/bin/bash
2
-
3
- # Publish script for circuit-mcp package
4
- # Uses token to bypass 2FA
5
-
6
- set -e
7
-
8
- # NPM token for publishing (bypasses 2FA)
9
- NPM_TOKEN="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"
10
-
11
- # Create temporary .npmrc with token
12
- echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc
13
-
14
- # Publish the package
15
- npm publish --access public
16
-
17
- # Clean up .npmrc
18
- rm .npmrc
19
-
20
- echo "✅ Published successfully!"
21
-