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/README.md +40 -371
- package/bin/api_tools.js +46 -7
- package/bin/cli.js +1 -1
- package/bin/desktop.js +155 -22
- package/bin/integrations.js +32 -5
- package/bin/link.js +3 -18
- package/bin/shared.js +20 -1
- package/bin/tests.js +1 -1
- package/bin/verify.js +2 -5
- package/dist/server.d.ts +7 -2
- package/dist/server.js +109 -1843
- package/package.json +10 -15
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "premanmcp",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
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
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"test": "
|
|
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-
|
|
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
|
-
"
|
|
40
|
-
"
|
|
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
|
]
|