-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.63 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
{
"name": "@textbee/mcp",
"version": "0.0.2",
"mcpName": "io.github.textbee/mcp",
"description": "MCP server for textbee.dev. Give your AI agent a phone number: send and read SMS through your own Android phone.",
"license": "MIT",
"type": "module",
"bin": { "textbee-mcp": "./dist/bin.js" },
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
"./package.json": "./package.json"
},
"files": ["dist", "LICENSE", "README.md"],
"sideEffects": false,
"engines": { "node": ">=20" },
"packageManager": "pnpm@9.14.2",
"publishConfig": { "access": "public" },
"repository": { "type": "git", "url": "git+https://github.com/textbee/textbee-mcp.git" },
"homepage": "https://textbee.dev",
"bugs": { "url": "https://github.com/textbee/textbee-mcp/issues" },
"keywords": [
"mcp",
"model-context-protocol",
"sms",
"sms-gateway",
"textbee",
"android",
"ai-agent",
"claude",
"cursor"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.test.json --noEmit",
"test": "vitest run --minWorkers=1 --maxWorkers=2",
"start": "node dist/bin.js",
"inspect": "pnpm build && npx @modelcontextprotocol/inspector@latest --cli node dist/bin.js --method tools/list",
"check:hygiene": "node scripts/hygiene.mjs",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.30.0",
"@textbee/sdk": "^0.2.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^22",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}