-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.51 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.51 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
{
"name": "@mdn/mcp",
"version": "0.0.1",
"repository": "https://github.com/mdn/mcp",
"type": "module",
"author": "MDN Web Docs",
"license": "MPL-2.0",
"scripts": {
"start": "node index.js",
"dev": "node scripts/dev.js",
"dev:server": "nodemon index.js",
"dev:inspector": "mcp-inspector --config mcp.json",
"tsc": "tsc",
"test": "node --test --experimental-test-coverage --test-coverage-lines 100 --test-coverage-exclude 'test/**/*' 'test/**/*.test.js'",
"test:watch": "node --test --watch 'test/**/*.test.js'"
},
"dependencies": {
"@lit-labs/ssr": "^4.0.0",
"@mdn/fred": "^2.2.1",
"@modelcontextprotocol/sdk": "^1.27.1",
"@sentry/node": "^10.40.0",
"express": "^5.1.0",
"turndown": "^7.2.2",
"turndown-plugin-gfm": "^1.0.2"
},
"devDependencies": {
"@eslint/compat": "^2.0.3",
"@eslint/js": "^9.39.4",
"@modelcontextprotocol/inspector": "^0.21.1",
"@types/express": "^5.0.6",
"@types/node": "^24.12.0",
"@types/turndown": "^5.0.6",
"concurrently": "^9.2.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.7.1",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-unicorn": "^63.0.0",
"lefthook": "^2.1.3",
"nodemon": "^3.1.14",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"undici": "^7.22.0",
"zod": "^4.3.6"
},
"packageManager": "npm@11.6.2",
"engines": {
"node": ">=24"
}
}