forked from yamayued/houjin-bangou-api-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.62 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.62 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
{
"name": "houjin-bangou-api-mcp",
"version": "0.1.0",
"description": "MCP server for the Japan National Tax Agency Corporate Number API.",
"type": "module",
"main": "dist/server.js",
"exports": {
".": "./dist/server.js"
},
"bin": {
"houjin-bangou-api-mcp": "dist/server.js"
},
"files": [
"dist",
".env.example",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "node --input-type=module --eval \"import { rmSync } from 'node:fs'; rmSync('dist', { recursive: true, force: true });\"",
"build": "npm run clean && tsc -p tsconfig.json",
"dev": "tsx src/server.ts",
"check:pack": "npm run build && npm pack --dry-run",
"prepublishOnly": "npm test && npm run build && npm run check:pack",
"smoke:mcp": "npm run build && tsx scripts/smoke-mcp.ts",
"smoke:package": "npm run build && tsx scripts/package-smoke.ts",
"start": "node dist/server.js",
"test": "tsx --test test/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yamayued/houjin-bangou-api-mcp.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"japan",
"corporate-number",
"nta"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/yamayued/houjin-bangou-api-mcp/issues"
},
"homepage": "https://github.com/yamayued/houjin-bangou-api-mcp#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"fast-xml-parser": "^5.3.0",
"zod": "^4.1.11"
},
"devDependencies": {
"@types/node": "^24.5.2",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
}
}