-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.44 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
{
"name": "material-web-mcp",
"version": "0.1.2",
"description": "MCP server for Material Web documentation",
"type": "module",
"bin": {
"material-web-mcp": "./bin/material-web-mcp"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.20.0",
"cheerio": "^1.0.0",
"winston": "3.13.0",
"zod": "3.23.0"
},
"scripts": {
"start": "node src/server.js",
"build": "node -c src/server.js",
"test": "jest",
"lint": "eslint src/**/*.js src/**/*.mjs",
"coverage": "jest --coverage",
"semantic-release": "semantic-release"
},
"author": {
"name": "Shanto Islam",
"email": "shantoislamdev@gmail.com",
"url": "https://shantoislamdev.web.app",
"github": "https://github.com/shantoislamdev"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shantoislamdev/material-web-mcp.git"
},
"bugs": {
"url": "https://github.com/shantoislamdev/material-web-mcp/issues"
},
"keywords": [
"mcp",
"material-web",
"documentation"
],
"engines": {
"node": ">=18.17"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.28.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"babel-jest": "^29.7.0",
"babel-plugin-transform-import-meta": "^2.3.3",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"semantic-release": "^23.0.2"
},
"jest": {
"testMatch": [
"**/*.test.mjs"
],
"transform": {
"^.+\\.(js|mjs)$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!(@modelcontextprotocol|zod|cheerio)/)"
],
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"src/**/*.js",
"src/**/*.mjs"
],
"coverageReporters": [
"text",
"text-summary",
"lcov",
"html"
],
"coverageThreshold": {
"global": {
"branches": 70,
"functions": 70,
"lines": 70,
"statements": 70
}
}
}
}