-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.16 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.16 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
{
"name": "mcp-server",
"version": "1.1.0",
"description": "Model Context Provider (MCP) server for data science services",
"main": "src/server.ts",
"scripts": {
"dev": "ts-node-dev --respawn src/server.ts",
"build": "tsc",
"start": "npm run build && node dist/server.js",
"prod": "npm run build && node dist/server.js",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"author": {
"name": "Pierre-Henry Soria",
"email": "contact@ph7.me",
"url": "https://x.com/phenrysay"
},
"homepage": "https://github.com/OpenData4Sciece/MCP-Server-API#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:OpenData4Sciece/MCP-Server-API.git"
},
"keywords": [
"MCP",
"API",
"data science",
"machine learning",
"model context",
"graph schema"
],
"dependencies": {
"@fastify/cors": "^11.1.0",
"@fastify/static": "^8.2.0",
"axios": "^1.11.0",
"dotenv": "^17.2.1",
"fastify": "^5.4.0"
},
"devDependencies": {
"@types/node": "^20.5.1",
"prettier": "^3.6.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
}
}