-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.01 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.01 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
{
"name": "safehold",
"version": "1.2.0",
"description": "Self-custody KYC document storage via MCP",
"mcpName": "io.github.Spacetime-Technology/safehold",
"type": "module",
"license": "MIT",
"author": "Spacetime Technology",
"keywords": [
"mcp",
"model-context-protocol",
"mcp-server",
"vault",
"encryption",
"xchacha20",
"kyc",
"self-custody",
"passport",
"national-id",
"driving-license",
"identity-documents",
"claude",
"claude-desktop"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Spacetime-Technology/safehold.git"
},
"homepage": "https://github.com/Spacetime-Technology/safehold#readme",
"bugs": {
"url": "https://github.com/Spacetime-Technology/safehold/issues"
},
"bin": {
"safehold": "./dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"prepare": "husky",
"preversion": "bash scripts/prerelease.sh",
"version": "node scripts/sync-server-json.js && git add server.json",
"postversion": "git push --follow-tags origin main",
"prepublishOnly": "npm run build",
"build": "tsc -p tsconfig.build.json",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint src tests",
"format": "prettier --write src tests",
"format:check": "prettier --check src tests"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"@noble/ciphers": "^2.2.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"prettier": "^3.8.3",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.59.3",
"vitest": "^3.2.0"
},
"engines": {
"node": ">=20.0.0"
}
}