-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.42 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.42 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
84
85
86
87
88
{
"name": "proton-pass-community-mcp",
"version": "1.1.1",
"description": "Unofficial MCP server that integrates with the Proton Pass CLI",
"license": "GPL-3.0-or-later",
"author": "Really Him",
"repository": {
"type": "git",
"url": "https://github.com/hesreallyhim/proton-pass-community-mcp.git"
},
"keywords": [
"mcp",
"proton-pass",
"security",
"password-manager",
"model-context-protocol"
],
"type": "module",
"bin": {
"proton-pass-community-mcp": "dist/index.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"provenance": true
},
"files": [
"dist"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"mcp:inspect": "npm run build && mcp-inspector --transport stdio -- node dist/index.js",
"mcp:inspect:smoke": "npm run build && node scripts/inspector-smoke.mjs",
"demo:shell": "scripts/demo-shell.sh",
"pass": "scripts/pass",
"pass:dev": "scripts/pass-dev.sh",
"pass:dev:login:web": "scripts/pass-dev.sh login",
"pass:dev:login:interactive": "scripts/pass-dev.sh login --interactive",
"pass:dev:info": "scripts/pass-dev.sh info",
"pass:dev:user:json": "scripts/pass-dev.sh user info --output json",
"pass:dev:preflight": "scripts/pass-dev-preflight.sh",
"pass:dev:template:drift": "node scripts/check-item-create-template-drift.mjs --check",
"pass:dev:template:snapshot:update": "node scripts/check-item-create-template-drift.mjs --write",
"pass:dev:template:probe": "node scripts/probe-item-create-template-contract.mjs --run",
"pass:dev:template:probe:additional-properties": "node scripts/probe-item-create-template-additional-properties.mjs --run",
"pass:dev:output-policy:check": "tsx scripts/sync-pass-cli-output-policy.ts --check",
"pass:dev:output-policy:update": "tsx scripts/sync-pass-cli-output-policy.ts --write",
"docs:sync:pass-cli": "scripts/sync-pass-cli-docs.sh",
"analyze:loc": "cloc --json --include-ext=ts,tsx,js,mjs,cjs src test",
"analyze:complexity": "node scripts/complexity-report.mjs",
"analyze:complexity:json": "node scripts/complexity-report.mjs --json-out docs/testing/complexity-report.json",
"check:complexity-thresholds": "node scripts/check-complexity-thresholds.mjs",
"check:production-hygiene": "node scripts/check-production-hygiene.mjs",
"check:upstream:pass-cli": "node scripts/check-pass-cli-upstream.mjs",
"check:release:package": "npm run lint && npm run typecheck && npm run test && npm run build && npm pack --dry-run",
"check": "npm run lint && npm run format:check && npm run typecheck && npm run coverage",
"prepare": "husky"
},
"engines": {
"node": ">=24"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@modelcontextprotocol/inspector": "^0.21.1",
"@vitest/coverage-v8": "^4.1.4",
"cloc": "^2.6.0-cloc",
"eslint": "^10.2.0",
"globals": "^17.4.0",
"husky": "^9.1.7",
"prettier": "^3.8.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vitest": "^4.1.4"
}
}