social-mcp 1.3.1 → 1.3.2

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.
Files changed (1) hide show
  1. package/package.json +78 -76
package/package.json CHANGED
@@ -1,77 +1,79 @@
1
1
  {
2
- "name": "social-mcp",
3
- "version": "1.3.1",
4
- "description": "MCP server for posting and interacting across social media platforms: Twitter, Instagram, Facebook, WhatsApp, Discord, Telegram, and Slack",
5
- "main": "dist/index.js",
6
- "type": "module",
7
- "bin": {
8
- "social-mcp": "dist/index.js"
9
- },
10
- "files": [
11
- "dist",
12
- "README.md"
13
- ],
14
- "publishConfig": {
15
- "access": "public"
16
- },
17
- "exports": {
18
- ".": {
19
- "import": "./dist/index.js"
20
- }
21
- },
22
- "repository": {
23
- "type": "git",
24
- "url": "git+https://github.com/oluwaeinstein007/social-mcp.git"
25
- },
26
- "bugs": {
27
- "url": "https://github.com/oluwaeinstein007/social-mcp/issues"
28
- },
29
- "homepage": "https://github.com/oluwaeinstein007/social-mcp#readme",
30
- "keywords": [
31
- "mcp",
32
- "model-context-protocol",
33
- "social-media",
34
- "twitter",
35
- "instagram",
36
- "facebook",
37
- "whatsapp",
38
- "discord",
39
- "telegram",
40
- "slack",
41
- "ai",
42
- "llm",
43
- "automation"
44
- ],
45
- "author": "Lanre Sanni",
46
- "license": "ISC",
47
- "dependencies": {
48
- "@slack/web-api": "^7.14.1",
49
- "dotenv": "^17.3.1",
50
- "fastmcp": "^3.33.0",
51
- "telegraf": "^4.16.3",
52
- "twitter-api-v2": "^1.29.0",
53
- "zod": "^4.3.6"
54
- },
55
- "devDependencies": {
56
- "@biomejs/biome": "*",
57
- "@changesets/cli": "^2.29.8",
58
- "@types/node": "^22.15.19",
59
- "husky": "^9.1.7",
60
- "lint-staged": "^15.5.2",
61
- "shx": "^0.3.4",
62
- "typescript": "^5.8.3",
63
- "ts-node": "^10.9.2",
64
- "vitest": "^3.2.4"
65
- },
66
- "scripts": {
67
- "build": "tsc && shx chmod +x dist/index.js",
68
- "clean": "shx rm -rf dist",
69
- "watch": "tsc --watch",
70
- "start": "node dist/index.js",
71
- "release": "pnpm run build && changeset publish",
72
- "format": "biome format . --write",
73
- "lint": "biome check .",
74
- "test": "vitest run",
75
- "test:watch": "vitest"
76
- }
77
- }
2
+ "name": "social-mcp",
3
+ "version": "1.3.2",
4
+ "description": "MCP server for posting and interacting across social media platforms: Twitter, Instagram, Facebook, WhatsApp, Discord, Telegram, and Slack",
5
+ "main": "dist/index.js",
6
+ "type": "module",
7
+ "bin": {
8
+ "social-mcp": "dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "README.md"
13
+ ],
14
+ "scripts": {
15
+ "build": "tsc && shx chmod +x dist/index.js",
16
+ "clean": "shx rm -rf dist",
17
+ "prepare": "husky",
18
+ "watch": "tsc --watch",
19
+ "start": "node dist/index.js",
20
+ "release": "pnpm run build && changeset publish",
21
+ "format": "biome format . --write",
22
+ "lint": "biome check .",
23
+ "test": "vitest run",
24
+ "test:watch": "vitest"
25
+ },
26
+ "publishConfig": {
27
+ "access": "public"
28
+ },
29
+ "exports": {
30
+ ".": {
31
+ "import": "./dist/index.js"
32
+ }
33
+ },
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "git+https://github.com/oluwaeinstein007/social-mcp.git"
37
+ },
38
+ "bugs": {
39
+ "url": "https://github.com/oluwaeinstein007/social-mcp/issues"
40
+ },
41
+ "homepage": "https://github.com/oluwaeinstein007/social-mcp#readme",
42
+ "keywords": [
43
+ "mcp",
44
+ "model-context-protocol",
45
+ "social-media",
46
+ "twitter",
47
+ "instagram",
48
+ "facebook",
49
+ "whatsapp",
50
+ "discord",
51
+ "telegram",
52
+ "slack",
53
+ "ai",
54
+ "llm",
55
+ "automation"
56
+ ],
57
+ "author": "Lanre Sanni",
58
+ "license": "ISC",
59
+ "packageManager": "pnpm@10.7.1",
60
+ "dependencies": {
61
+ "@slack/web-api": "^7.14.1",
62
+ "dotenv": "^17.3.1",
63
+ "fastmcp": "^3.33.0",
64
+ "telegraf": "^4.16.3",
65
+ "twitter-api-v2": "^1.29.0",
66
+ "zod": "^4.3.6"
67
+ },
68
+ "devDependencies": {
69
+ "@biomejs/biome": "*",
70
+ "@changesets/cli": "^2.29.8",
71
+ "@types/node": "^22.15.19",
72
+ "husky": "^9.1.7",
73
+ "lint-staged": "^15.5.2",
74
+ "shx": "^0.3.4",
75
+ "typescript": "^5.8.3",
76
+ "ts-node": "^10.9.2",
77
+ "vitest": "^3.2.4"
78
+ }
79
+ }