forked from bitwarden/mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.68 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.68 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
{
"type": "module",
"name": "@bitwarden/mcp-server",
"version": "2025.8.1",
"description": "Bitwarden MCP Server",
"repository": {
"type": "git",
"url": "git+https://github.com/bitwarden/mcp-server.git"
},
"author": "Bitwarden Inc. <hello@bitwarden.com> (https://bitwarden.com)",
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/bitwarden/mcp-server/issues"
},
"homepage": "https://bitwarden.com",
"dependencies": {
"@modelcontextprotocol/sdk": "1.17.0",
"shx": "0.4.0",
"zod": "4.0.10"
},
"devDependencies": {
"@eslint/js": "9.32.0",
"@jest/globals": "30.0.5",
"@modelcontextprotocol/inspector": "0.16.2",
"@types/jest": "30.0.0",
"@types/node": "22.16.5",
"eslint": "9.32.0",
"globals": "16.3.0",
"husky": "9.1.7",
"jest": "30.0.5",
"jest-junit": "16.0.0",
"lint-staged": "16.1.2",
"prettier": "3.6.2",
"ts-jest": "29.4.0",
"typescript": "5.8.3",
"typescript-eslint": "8.38.0"
},
"bin": {
"mcp-server-bitwarden": "dist/index.js"
},
"files": [
"dist"
],
"lint-staged": {
"*": "prettier --cache --write --ignore-unknown",
"*.ts": "eslint --cache --cache-strategy content --fix"
},
"scripts": {
"prepare": "husky",
"lint": "eslint . --cache --cache-strategy content && prettier --check .",
"lint:fix": "eslint . --cache --cache-strategy content --fix",
"build": "tsc && shx chmod +x dist/*.js",
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
"test": "jest --silent",
"test:watch": "jest --watch",
"test:run": "npm run test",
"check-exports": "node -e \"require('./dist/index.js')\""
}
}