-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.14 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
{
"name": "icss-mcp-server",
"version": "1.1.1",
"description": "Comprehensive MCP Server integrating iCSS techniques and CSS-Inspiration demos - provides complete CSS solutions with runnable code",
"main": "server.js",
"bin": {
"icss-mcp": "./bin/icss-mcp.js",
"icss-mcp-install": "./bin/install.js"
},
"type": "module",
"files": [
"server.js",
"setup.js",
"bin/",
"scripts/",
"data/",
"README.md",
"README.en.md",
"LICENSE"
],
"scripts": {
"setup": "node setup.js",
"start": "node server.js",
"dev": "nodemon server.js",
"build": "node scripts/fetch-issues.js",
"build:inspiration": "node scripts/fetch-inspiration.js",
"build:all": "npm run build && npm run build:inspiration",
"test": "node test-server.js",
"test:inspiration": "node test-inspiration.js",
"test:all": "npm run test && npm run test:inspiration",
"install-mcp": "node bin/install.js",
"postinstall": "node setup.js",
"prepublishOnly": "npm run build:all && npm test"
},
"keywords": [
"mcp",
"css",
"frontend",
"cursor",
"icss",
"css-inspiration",
"model-context-protocol",
"ai-tools",
"css-techniques",
"css-demos",
"web-development",
"css-examples",
"chokcoco"
],
"author": {
"name": "iCSS MCP Server",
"email": "icss-mcp@example.com",
"url": "https://github.com/chokcoco/iCSS"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chokcoco/iCSS.git",
"directory": "MCP"
},
"homepage": "https://github.com/chokcoco/iCSS/tree/main/MCP",
"bugs": {
"url": "https://github.com/chokcoco/iCSS/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"axios": "^1.10.0",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.6.1",
"fuse.js": "^7.0.0",
"marked": "^9.1.6",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"nodemon": "^3.0.1"
},
"peerDependencies": {
"node": ">=18.0.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}