-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@youdie006/prodex",
"version": "0.40.18",
"description": "Local receipt bus for coordinating Codex execution with ChatGPT Pro/Projects consultation.",
"author": "youdie006",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/youdie006/prodex.git"
},
"homepage": "https://github.com/youdie006/prodex#readme",
"bugs": {
"url": "https://github.com/youdie006/prodex/issues"
},
"keywords": [
"chatgpt",
"chatgpt-pro",
"codex",
"claude",
"mcp",
"cli",
"bridge"
],
"type": "module",
"bin": {
"prodex": "prodex.mjs"
},
"exports": {},
"files": [
"prodex.mjs",
"dist",
"LICENSE",
"README.md",
"SECURITY.md",
"docs/claude.md",
"docs/clients.md",
"docs/http-mcp.md",
"docs/releasing.md",
"docs/cli-reference.md",
"docs/platform-verification.md",
"scripts/npm-command.mjs",
"scripts/release-check.mjs",
"scripts/release-pack.mjs"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"postbuild": "node scripts/postbuild.mjs",
"dev": "tsx src/cli.ts",
"release:check": "node scripts/release-check.mjs",
"release:pack": "node scripts/release-pack.mjs",
"release:verify": "node scripts/release-check.mjs --verification-only",
"smoke:package": "node scripts/package-smoke.mjs",
"smoke:browser": "node scripts/browser-launch-smoke.mjs",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepack": "npm run build",
"prepublishOnly": "node scripts/release-check.mjs"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.3",
"ws": "^8.21.3",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/node": "^22.15.32",
"@types/ws": "^8.18.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitest": "^4.1.11"
}
}