premanmcp 0.16.2 → 1.0.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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "premanmcp",
3
- "version": "0.16.2",
4
- "description": "Turn APIs into agent-callable MCP tools with auth, testing, and audit logs",
3
+ "version": "1.0.0",
4
+ "description": "PreMan CLI and stdio proxy for PreMan's hosted MCP server",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "premanmcp": "bin/cli.js",
@@ -10,21 +10,16 @@
10
10
  },
11
11
  "scripts": {
12
12
  "build": "tsc -p tsconfig.server.json",
13
- "dev": "tsx src/server.ts",
14
- "open-mcp-preview": "node scripts/emit-mcp-preview.mjs",
15
- "open-mcp-preview-in-cursor": "node scripts/open-cursor-preview.mjs",
16
- "test": "npm run build && npm run test:connect && npm run test:node && npm run test:dmg",
13
+ "prepublishOnly": "npm run build",
14
+ "dev": "npm run build && node dist/server.js",
15
+ "test": "npm run build && npm run test:proxy",
16
+ "test:proxy": "node --test scripts/smoke-proxy.mjs",
17
17
  "test:connect": "node scripts/smoke-connect.mjs",
18
- "test:node": "node --test --test-timeout=90000 scripts/smoke-account.mjs scripts/smoke-cli-entrypoint.mjs scripts/smoke-launcher-config.mjs scripts/smoke-runner.mjs scripts/smoke-repo-config.mjs scripts/smoke-checkout.mjs scripts/smoke-onboard.mjs scripts/smoke-onboard-opening.mjs scripts/smoke-local-detect.mjs scripts/smoke-prepush-hook.mjs scripts/smoke-cli-identity.mjs scripts/smoke-runner-heartbeat.mjs scripts/smoke-verify-prepush.mjs scripts/smoke-push-link.mjs scripts/smoke-push-diff.mjs scripts/smoke-progress-reporter.mjs scripts/smoke-verify-plan.mjs scripts/smoke-install-desktop.mjs scripts/smoke-desktop-session.mjs scripts/smoke-api-tools.mjs scripts/smoke-tests-workbench.mjs scripts/smoke-bin-scope.mjs",
18
+ "test:node": "node --test --test-timeout=90000 scripts/smoke-account.mjs scripts/smoke-cli-entrypoint.mjs scripts/smoke-launcher-config.mjs scripts/smoke-runner.mjs scripts/smoke-repo-config.mjs scripts/smoke-onboard.mjs scripts/smoke-onboard-opening.mjs scripts/smoke-local-detect.mjs scripts/smoke-prepush-hook.mjs scripts/smoke-cli-identity.mjs scripts/smoke-runner-heartbeat.mjs scripts/smoke-verify-prepush.mjs scripts/smoke-push-diff.mjs scripts/smoke-progress-reporter.mjs scripts/smoke-verify-plan.mjs scripts/smoke-install-desktop.mjs scripts/smoke-desktop-session.mjs scripts/smoke-api-tools.mjs scripts/smoke-tests-workbench.mjs scripts/smoke-bin-scope.mjs",
19
19
  "test:dmg": "node --test --test-timeout=300000 scripts/smoke-install-desktop-volume.mjs"
20
20
  },
21
- "dependencies": {
22
- "@modelcontextprotocol/ext-apps": "^0.1.0",
23
- "@modelcontextprotocol/sdk": "^1.0.0"
24
- },
25
21
  "devDependencies": {
26
22
  "@types/node": "^25.5.0",
27
- "tsx": "^4.0.0",
28
23
  "typescript": "^5.8.0"
29
24
  },
30
25
  "keywords": [
@@ -36,8 +31,9 @@
36
31
  "audit",
37
32
  "auth",
38
33
  "hosted-mcp",
39
- "cursor",
40
- "claude-code"
34
+ "stdio-proxy",
35
+ "codex",
36
+ "chatgpt"
41
37
  ],
42
38
  "license": "MIT",
43
39
  "repository": {
@@ -51,7 +47,6 @@
51
47
  "files": [
52
48
  "dist/",
53
49
  "bin/",
54
- "browser/",
55
50
  "README.md",
56
51
  "LICENSE"
57
52
  ]