-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.87 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.87 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
{
"name": "@mapbox/mcp-server",
"version": "0.2.3",
"description": "Mapbox MCP server.",
"main": "dist/index.js",
"module": "dist/index-esm.js",
"typings": "dist/index.d.ts",
"type": "module",
"bin": {
"mcp-server": "dist/index.js"
},
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
"start": "node dist/index.js --port 3001",
"dev:stdio": "tsx src/index.ts",
"dev:http": "tsx src/index.ts --port 3001",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector dist/index.js"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix",
"*.{js,jsx,ts,tsx,md,html,css}": "prettier --write"
},
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://github.com/mapbox/mcp-server#readme",
"devDependencies": {
"@eslint/js": "^9.27.0",
"@types/jest": "^29.0.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-unused-imports": "^4.0.0",
"husky": "^9.0.0",
"jest": "^29.1.0",
"lint-staged": "^16.1.0",
"plop": "^4.0.1",
"prettier": "^3.0.0",
"ts-jest": "^29.3.4",
"tsx": "^4.0.0",
"typescript": "^5.8.3"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none"
},
"engines": {
"node": ">=22"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index-esm.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/mapbox/mcp-server.git"
},
"keywords": [
"mapbox",
"mcp"
],
"dependencies": {
"@modelcontextprotocol/sdk": "1.16.0",
"dotenv": "^17.2.0",
"zod": "^3.25.42"
}
}