sosoapi 0.4.0
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.
- package/.claude-plugin/plugin.json +14 -0
- package/README.md +89 -0
- package/dist/THIRD_PARTY_LICENSES.txt +245 -0
- package/dist/agent-api.v1.json +30525 -0
- package/dist/agent-api.v1.sha256 +1 -0
- package/dist/index.js +42086 -0
- package/package.json +65 -0
package/package.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "sosoapi",
|
|
3
|
+
"version": "0.4.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"description": "SosoAPI CLI and MCP server: let your coding agent draft, schedule and publish social posts you approve.",
|
|
7
|
+
"homepage": "https://sosoapi.ai/docs",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"sosoapi",
|
|
10
|
+
"mcp",
|
|
11
|
+
"model-context-protocol",
|
|
12
|
+
"claude-code",
|
|
13
|
+
"codex",
|
|
14
|
+
"social-media",
|
|
15
|
+
"threads",
|
|
16
|
+
"instagram",
|
|
17
|
+
"youtube",
|
|
18
|
+
"cli"
|
|
19
|
+
],
|
|
20
|
+
"bin": {
|
|
21
|
+
"sosoapi": "./dist/index.js",
|
|
22
|
+
"sosoapi-mcp": "./dist/index.js",
|
|
23
|
+
"vicky": "./dist/index.js",
|
|
24
|
+
"vicky-mcp": "./dist/index.js"
|
|
25
|
+
},
|
|
26
|
+
"main": "./dist/index.js",
|
|
27
|
+
"files": [
|
|
28
|
+
"dist/index.js",
|
|
29
|
+
"dist/agent-api.v1.json",
|
|
30
|
+
"dist/agent-api.v1.sha256",
|
|
31
|
+
"dist/THIRD_PARTY_LICENSES.txt",
|
|
32
|
+
"README.md",
|
|
33
|
+
".claude-plugin"
|
|
34
|
+
],
|
|
35
|
+
"engines": {
|
|
36
|
+
"node": ">=20"
|
|
37
|
+
},
|
|
38
|
+
"publishConfig": {
|
|
39
|
+
"access": "public"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {
|
|
42
|
+
"typecheck": "tsc --noEmit",
|
|
43
|
+
"build": "bun ../../scripts/check-installed-deps.ts && tsup && bun scripts/copy-public-contract.ts && bun scripts/write-third-party-licenses.ts",
|
|
44
|
+
"dev": "tsup --watch",
|
|
45
|
+
"test": "bun test src",
|
|
46
|
+
"pack:private": "bun run build && npm pack --ignore-scripts",
|
|
47
|
+
"pack:beta": "bun run pack:private",
|
|
48
|
+
"check:package": "bun scripts/check-private-package.ts"
|
|
49
|
+
},
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"@napi-rs/keyring": "1.3.0"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@modelcontextprotocol/sdk": "1.29.0",
|
|
55
|
+
"@types/node": "^22.0.0",
|
|
56
|
+
"@vic-ai/api-types": "workspace:*",
|
|
57
|
+
"@vic-ai/contracts": "workspace:*",
|
|
58
|
+
"ajv": "8.20.0",
|
|
59
|
+
"hono": "4.12.34",
|
|
60
|
+
"jose": "6.2.3",
|
|
61
|
+
"tsup": "^8.5.0",
|
|
62
|
+
"typescript": "^5.6.0",
|
|
63
|
+
"zod": "4.4.1"
|
|
64
|
+
}
|
|
65
|
+
}
|