-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.17 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.17 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
{
"name": "buffett-code-mcp-server",
"version": "0.1.0",
"description": "A MCP(Model Context Protocol) server that accesses to Buffett Code API",
"main": "dist/index.js",
"type": "module",
"bin": {
"buffett-code-mcp-server": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "node --import ./ts-node-loader.js src/index.ts",
"build": "tsc -p tsconfig.build.json && shx chmod +x dist/*.js",
"start": "node dist/index.js",
"test": "echo \"No tests yet\"",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint \"src/**/*.ts\"",
"lint:prettier": "prettier --check \"src/**/*.ts\"",
"fix": "npm run fix:eslint && npm run fix:prettier",
"fix:eslint": "eslint \"src/**/*.ts\" --fix",
"fix:prettier": "prettier --write \"src/**/*.ts\"",
"examples": "run-s examples:*",
"examples:list_tools": "npm run build && node --import ./ts-node-loader.js examples/list_tools.ts",
"examples:get_jp_company": "npm run build && node --import ./ts-node-loader.js examples/get_jp_company.ts",
"examples:get_us_company": "npm run build && node --import ./ts-node-loader.js examples/get_us_company.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/syucream/buffett-code-mcp-server.git"
},
"keywords": [
"mcp",
"buffett-code"
],
"author": "syucream",
"license": "MIT",
"bugs": {
"url": "https://github.com/syucream/buffett-code-mcp-server/issues"
},
"homepage": "https://github.com/syucream/buffett-code-mcp-server#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"@types/node": "^20.10.3",
"dotenv": "^16.4.7",
"openapi-fetch": "^0.13.7",
"typescript": "^5.3.2",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.4"
},
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^9.1.0",
"npm-run-all2": "^8.0.1",
"openapi-typescript": "^7.7.1",
"prettier": "^3.2.2",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"tsx": "^4.19.3"
}
}