-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 958 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 958 Bytes
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
{
"name": "iconify-mcp-server",
"type": "module",
"version": "1.0.4",
"main": "./dist/index.js",
"description": "MCP server for Iconify",
"scripts": {
"build": "bun run build.ts",
"prepublishOnly": "bun run build"
},
"bin": {
"iconify-mcp-server": "./dist/index.js"
},
"files": [
"dist"
],
"keywords": [
"mcp",
"iconify",
"icon",
"icon-set",
"icon-collection"
],
"homepage": "https://github.com/imjac0b/iconify-mcp-server#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/imjac0b/iconify-mcp-server.git"
},
"bugs": "https://github.com/imjac0b/iconify-mcp-server/issues",
"author": "Jacob <me@jacob.com.hk>",
"license": "GPL-3.0",
"devDependencies": {
"@types/bun": "latest",
"@modelcontextprotocol/sdk": "^1.18.2",
"ofetch": "^1.4.1",
"zod": "^3.25.76"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"dependencies": {}
}