-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.9 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.9 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
{
"name": "@alisaitteke/noun-mcp",
"version": "1.0.3",
"description": "MCP server for The Noun Project - search and download icons directly in Cursor AI and Claude",
"repository": {
"type": "git",
"url": "https://github.com/alisaitteke/noun-mcp.git"
},
"bugs": {
"url": "https://github.com/alisaitteke/noun-mcp/issues"
},
"homepage": "https://github.com/alisaitteke/noun-mcp#readme",
"author": "Ali Sait Teke <alisaitteke@gmail.com> (https://github.com/alisaitteke)",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"bin": {
"noun-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"docs/icons",
"docs/hero.png"
],
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"prepublishOnly": "npm run build",
"test": "npm run build && node dist/index.js --help || echo 'Server built successfully'",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"mcp-server",
"noun-project",
"icons",
"icon-search",
"icon-download",
"cursor",
"cursor-ai",
"claude",
"claude-desktop",
"ai",
"ai-tools",
"svg",
"png",
"design",
"developer-tools"
],
"engines": {
"node": ">=18.0.0"
},
"mcpName": "io.github.alisaitteke/noun-mcp",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.3",
"axios": "^1.13.5",
"bottleneck": "^2.19.5",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.5",
"lru-cache": "^10.4.3",
"oauth-1.0a": "^2.2.6",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.10.2",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"overrides": {
"@hono/node-server": "^1.19.10",
"hono": "^4.12.4"
}
}