-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.98 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
{
"name": "@profullstack/mcp-server",
"version": "1.5.1",
"description": "A generic, modular server for implementing the Model Context Protocol (MCP)",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"dev": "node --watch index.js",
"test": "mocha --require=./test/setup.js test/**/*.test.js",
"test:modules": "mocha --require=./test/setup.js src/modules/*/test/**/*.test.js",
"test:all": "mocha --require=./test/setup.js \"test/**/*.test.js\" \"src/modules/*/test/**/*.test.js\"",
"lint": "eslint .",
"format": "prettier --write .",
"create-module": "node scripts/create-module.js",
"prepare": "husky",
"pre-commit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/profullstack/mcp-server.git"
},
"bugs": {
"url": "https://github.com/profullstack/mcp-server/issues"
},
"homepage": "https://profullstack.com",
"keywords": [
"mcp",
"model",
"ai",
"server",
"api"
],
"author": "Profullstack, Inc.",
"license": "MIT",
"packageManager": "pnpm@10.6.5",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@hono/node-server": "^1.19.17",
"dotenv": "^16.6.1",
"form-data": "^4.0.6",
"hono": "^4.13.2",
"https-proxy-agent": "^7.0.6",
"jsdom": "^22.1.0",
"node-fetch": "^3.3.2",
"puppeteer": "^25.7.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"stream-transform": "^3.5.1"
},
"devDependencies": {
"chai": "^4.5.0",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"mocha": "^10.8.2",
"prettier": "^3.9.6",
"sinon": "^15.2.0",
"supertest": "^6.3.4"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"overrides": {
"serialize-javascript": "^7.0.0"
},
"pnpm": {
"overrides": {
"serialize-javascript": "^7.0.0"
}
}
}