-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.54 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.54 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
{
"name": "@jsonresume/mcp",
"version": "3.0.3",
"description": "ModelContextProtocol server for enhancing JSON Resumes",
"type": "module",
"private": false,
"scripts": {
"make-executable": "node -e \"fs.chmodSync('dist/index.cjs', '755');\" --require fs",
"build": "esbuild index.ts --outfile=dist/index.cjs --bundle --platform=node --format=cjs --banner:js='#!/usr/bin/env node' && npm run make-executable",
"watch": "esbuild index.ts --outfile=dist/index.cjs --bundle --platform=node --format=cjs --banner:js='#!/usr/bin/env node' --watch",
"inspect": "npx @modelcontextprotocol/inspector node dist/index.cjs",
"dev": "tsx index.ts",
"start": "node dist/index.cjs",
"start:stdio": "node dist/index.cjs stdio",
"start:http": "node dist/index.cjs",
"prepublishOnly": "npm run build",
"test:openai": "tsx tests/check-openai.ts",
"test:mock": "tsx tests/debug-mock.ts",
"test:enhance": "tsx tests/debug-enhance.ts",
"test:mcp": "node tests/test-mcp.js"
},
"bin": {
"@jsonresume/mcp": "./dist/index.cjs"
},
"files": [
"dist"
],
"dependencies": {
"@hono/node-server": "^1.14.0",
"@modelcontextprotocol/sdk": "file:/home/ajax/repos/typescript-sdk",
"axios": "^1.8.1",
"dotenv": "^16.4.7",
"hono": "^4.7.5",
"octokit": "^3.2.1",
"openai": "^4.86.1"
},
"devDependencies": {
"@types/node": "^22.10.1",
"concurrently": "^8.2.2",
"esbuild": "^0.24.0",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5.3.3"
}
}