-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.04 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.04 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@cyanheads/reference-data-mcp-server",
"version": "0.1.4",
"mcpName": "io.github.cyanheads/reference-data-mcp-server",
"description": "Look up countries, timezones, periodic table elements, physical constants, units, HTTP status codes, and MIME types via MCP. STDIO or Streamable HTTP.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"reference-data-mcp-server": "dist/index.js"
},
"files": [
"changelog/",
"dist/",
"README.md",
"LICENSE",
"CLAUDE.md",
"AGENTS.md",
"Dockerfile",
"server.json"
],
"scripts": {
"build": "bun run scripts/build.ts",
"rebuild": "bun run scripts/clean.ts && bun run build",
"clean": "bun run scripts/clean.ts",
"devcheck": "bun run scripts/devcheck.ts",
"audit:refresh": "rm -f bun.lock && bun install && bun audit",
"tree": "bun run scripts/tree.ts",
"list-skills": "bun run scripts/list-skills.ts",
"format": "biome check --write --unsafe .",
"lint:mcp": "bun run scripts/lint-mcp.ts",
"lint:packaging": "bun run scripts/lint-packaging.ts",
"bundle": "bun run build && npx -y @anthropic-ai/mcpb pack . dist/reference-data-mcp-server.mcpb",
"changelog:build": "bun run scripts/build-changelog.ts",
"changelog:check": "bun run scripts/build-changelog.ts --check",
"test": "bunx vitest run",
"start:stdio": "MCP_TRANSPORT_TYPE=stdio bun ./dist/index.js",
"start:http": "MCP_TRANSPORT_TYPE=http bun ./dist/index.js"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"typescript",
"bun",
"stdio",
"streamable-http",
"reference-data",
"countries",
"timezones",
"periodic-table",
"elements",
"physical-constants",
"unit-conversion",
"http-status",
"mime-types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cyanheads/reference-data-mcp-server.git"
},
"homepage": "https://github.com/cyanheads/reference-data-mcp-server#readme",
"bugs": {
"url": "https://github.com/cyanheads/reference-data-mcp-server/issues"
},
"author": "cyanheads <casey@caseyjhand.com> (https://github.com/cyanheads/reference-data-mcp-server#readme)",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/cyanheads"
},
{
"type": "buy_me_a_coffee",
"url": "https://www.buymeacoffee.com/cyanheads"
}
],
"license": "Apache-2.0",
"packageManager": "bun@1.3.11",
"engines": {
"bun": ">=1.3.0",
"node": ">=24.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@cyanheads/mcp-ts-core": "^0.9.9",
"@vvo/tzdb": "^6.198.0",
"convert-units": "^2.3.4",
"countries-list": "^3.3.0",
"mime-db": "^1.54.0",
"pino-pretty": "^13.1.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@types/mime-db": "^1.43.6",
"@types/node": "^25.6.0",
"depcheck": "^1.4.7",
"ignore": "^7.0.5",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}