-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.61 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.61 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
{
"name": "mcp-npm-scripts",
"version": "0.1.1",
"description": "Model Context Protocol (MCP) server exposing package.json scripts as tools.",
"keywords": [
"mcp",
"model-context-protocol",
"npm",
"package.json",
"scripts",
"tools"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./cli": {
"import": "./dist/cli.js"
}
},
"bin": {
"mcp-npm-scripts": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist",
"dev": "npm run build && node dist/cli.js",
"watch": "tsc -w",
"typecheck": "tsc --noEmit",
"prepare": "npm run build && chmod +x dist/cli.js",
"start": "node dist/cli.js",
"format": "prettier . --write",
"format:check": "prettier . --check",
"husky:install": "husky install"
},
"engines": {
"node": ">=18.18"
},
"author": "Ryan Meador",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ryanmeador/mcp-npm-scripts.git"
},
"bugs": {
"url": "https://github.com/ryanmeador/mcp-npm-scripts/issues"
},
"homepage": "https://github.com/ryanmeador/mcp-npm-scripts#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.12.7",
"husky": "^9.1.4",
"lint-staged": "^15.2.6",
"prettier": "^3.3.3",
"tsx": "^4.16.2",
"typescript": "^5.4.0"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,cts,mts,json,md,yml,yaml}": "prettier --write"
}
}