@bitwarden/mcp-server 2025.7.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "type": "module",
3
+ "name": "@bitwarden/mcp-server",
4
+ "version": "2025.7.0-beta.1",
5
+ "description": "Bitwarden MCP Server",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/bitwarden/mcp-server.git"
9
+ },
10
+ "author": "Bitwarden Inc. <hello@bitwarden.com> (https://bitwarden.com)",
11
+ "license": "SEE LICENSE IN LICENSE.txt",
12
+ "bugs": {
13
+ "url": "https://github.com/bitwarden/mcp-server/issues"
14
+ },
15
+ "homepage": "https://bitwarden.com",
16
+ "dependencies": {
17
+ "@modelcontextprotocol/sdk": "1.13.0",
18
+ "shx": "0.4.0",
19
+ "zod": "3.25.67"
20
+ },
21
+ "devDependencies": {
22
+ "@eslint/js": "9.29.0",
23
+ "@jest/globals": "30.0.3",
24
+ "@modelcontextprotocol/inspector": "0.14.3",
25
+ "@types/jest": "30.0.0",
26
+ "@types/node": "22.15.32",
27
+ "eslint": "9.29.0",
28
+ "globals": "16.2.0",
29
+ "husky": "9.1.7",
30
+ "jest": "30.0.3",
31
+ "jest-junit": "16.0.0",
32
+ "lint-staged": "16.1.2",
33
+ "prettier": "3.5.3",
34
+ "ts-jest": "29.4.0",
35
+ "typescript": "5.8.3",
36
+ "typescript-eslint": "8.35.0"
37
+ },
38
+ "bin": {
39
+ "mcp-server-bitwarden": "dist/index.js"
40
+ },
41
+ "files": [
42
+ "dist"
43
+ ],
44
+ "lint-staged": {
45
+ "*": "prettier --cache --write --ignore-unknown",
46
+ "*.ts": "eslint --cache --cache-strategy content --fix"
47
+ },
48
+ "scripts": {
49
+ "prepare": "husky",
50
+ "lint": "eslint . --cache --cache-strategy content && prettier --check .",
51
+ "lint:fix": "eslint . --cache --cache-strategy content --fix",
52
+ "build": "tsc && shx chmod +x dist/*.js",
53
+ "inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
54
+ "test": "jest --silent",
55
+ "test:watch": "jest --watch",
56
+ "test:run": "npm run test",
57
+ "check-exports": "node -e \"require('./dist/index.js')\""
58
+ }
59
+ }