-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.2 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
81
82
83
{
"name": "gcnv-mcp-server",
"version": "1.2.0",
"description": "Google Cloud NetApp Volumes MCP Server - A Model Context Protocol server for managing GCNV Backup, StoragePool, Volume and Replication resources",
"repository": {
"type": "git",
"url": "https://github.com/NetApp/gcnv-mcp-server"
},
"main": "build/index.js",
"bin": {
"gcnv-mcp": "build/index.js"
},
"files": [
"build",
"src/resources",
"GEMINI.md",
"gemini-extension.json",
"README.md",
"LICENSE"
],
"type": "module",
"imports": {
"#resources/*": "./src/resources/*"
},
"engines": {
"node": ">=20.19.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"scripts": {
"githooks:install": "git config core.hooksPath .githooks",
"precommit": "npm run lint && npm test",
"prepack": "npm run build",
"build": "npm run lint && npm run format && tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts --max-warnings=0",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"sbom": "npm sbom --sbom-format=spdx",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"start": "node build/index.js",
"start:stdio": "node build/index.js --transport stdio",
"start:http": "node build/index.js --transport http",
"dev": "tsx src/index.ts",
"dev:http": "tsx src/index.ts --transport http"
},
"keywords": [
"mcp",
"google",
"netapp",
"ontap",
"storage",
"api"
],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.1.0",
"@vitest/coverage-v8": "4.1.9",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.1",
"prettier": "^3.8.4",
"tsx": "^4.19.1",
"typescript": "^5.8.3",
"typescript-eslint": "8.62.0",
"vitest": "4.1.9"
},
"dependencies": {
"@google-cloud/netapp": "^0.18.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"google-auth-library": "^10.7.0",
"google-gax": "^5.0.7",
"pino": "^9.5.0",
"pino-pretty": "^13.1.3",
"zod": "^3.25.76"
}
}