-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.7 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.7 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
{
"name": "socialclaw",
"version": "0.1.12",
"description": "Social media scheduling CLI and OpenClaw skill for AI agents posting to X, LinkedIn, Instagram, Facebook Pages, TikTok, Discord, Telegram, YouTube, Reddit, WordPress, and Pinterest.",
"type": "module",
"license": "MIT",
"author": "SocialClaw",
"homepage": "https://getsocialclaw.com",
"repository": {
"type": "git",
"url": "git+https://github.com/ndesv21/socialclaw.git"
},
"bugs": {
"url": "https://github.com/ndesv21/socialclaw/issues"
},
"keywords": [
"social media",
"social media scheduling",
"social media scheduler",
"social media publishing",
"social media api",
"publishing api",
"scheduler",
"publishing",
"cli",
"oauth",
"socialclaw",
"ai agents",
"openclaw",
"clawhub",
"claude code",
"codex",
"x",
"linkedin",
"instagram",
"facebook pages",
"tiktok",
"discord",
"telegram",
"youtube",
"reddit",
"wordpress",
"pinterest"
],
"bin": {
"social": "src/index.mjs",
"socialclaw": "src/index.mjs"
},
"files": [
"src",
"skill",
"skills",
".claude-plugin",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"test": "node --check src/index.mjs",
"pack:check": "npm pack --dry-run",
"publish:package": "npm publish --access public",
"sync:version": "node tools/sync-plugin-version.mjs",
"sync:references": "node tools/sync-references.mjs",
"version": "node tools/sync-plugin-version.mjs && node tools/sync-references.mjs && git add .claude-plugin/ skills/socialclaw/references/"
},
"publishConfig": {
"access": "public"
}
}