-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.51 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.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
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": "@mapbox/mcp-devkit-server",
"version": "0.3.0",
"description": "Mapbox MCP devkit server",
"main": "dist/index.js",
"module": "dist/index-esm.js",
"typings": "dist/index.d.ts",
"type": "module",
"bin": {
"mapbox-mcp-devkit": "dist/index.js"
},
"scripts": {
"lint": "eslint \"./src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"./src/**/*.{ts,tsx}\" --fix",
"fix-lint": "npm run lint:fix && npm run format:fix",
"format": "prettier --check \"./src/**/*.{ts,tsx,js,json,md}\"",
"format:fix": "prettier --write \"./src/**/*.{ts,tsx,js,json,md}\"",
"prepare": "husky && node .husky/setup-hooks.js",
"test": "jest",
"build": "npm run prepare && npm run sync-manifest-version && npm run build:esm && npm run build:cjs && npm run generate-version && node scripts/build-helpers.cjs copy-json && node scripts/add-shebang.cjs",
"build:esm": "node scripts/build-helpers.cjs esm-package && tsc -p tsconfig.json",
"build:cjs": "node scripts/build-helpers.cjs cjs-package && tsc -p tsconfig.json",
"generate-version": "node scripts/build-helpers.cjs generate-version",
"sync-manifest-version": "node scripts/build-helpers.cjs sync-manifest-version",
"dev": "tsc -p tsconfig.json --watch"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix",
"*.{js,jsx,ts,tsx,md,html,css}": "prettier --write"
},
"license": "BSD-3-Clause",
"homepage": "https://github.com/mapbox/mcp-devkit-server#readme",
"repository": {
"type": "git",
"url": "https://github.com/mapbox/mcp-devkit-server.git"
},
"engines": {
"node": ">=22"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index-esm.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"keywords": [
"mcp"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.25.42"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@types/geojson": "^7946.0.16",
"@types/jest": "^29.0.1",
"@types/node": "^22.0.0",
"@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",
"typescript": "^5.8.3"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none"
}
}