-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.09 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.09 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
{
"name": "@voidmob/mcp",
"version": "0.2.0",
"description": "Mobile proxies, non-VoIP SMS verifications, and global eSIMs for AI agents and MCP clients.",
"mcpName": "io.github.voidmobcom/voidmob-mcp",
"type": "module",
"bin": {
"voidmob-mcp": "./dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./src/index.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"postbuild": "chmod +x dist/index.js",
"dev": "tsc --watch",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"mcp-server",
"sms",
"proxy",
"esim",
"privacy"
],
"homepage": "https://voidmob.com",
"repository": {
"type": "git",
"url": "https://github.com/voidmobcom/voidmob-mcp"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.0",
"typescript": "^6.0.2"
}
}