-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.61 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.61 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
{
"name": "contentstudio-cli",
"version": "1.0.6",
"description": "ContentStudio CLI — schedule social-media posts, manage media, accounts, comments, and approvals across Facebook, LinkedIn, Twitter/X, Instagram, YouTube, TikTok, Pinterest, and Google Business Profile via the ContentStudio API.",
"main": "dist/index.js",
"bin": {
"contentstudio": "./dist/index.js"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"start": "node ./dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"README.md",
"SKILL.md",
"CHANGELOG.md",
"LICENSE"
],
"keywords": [
"contentstudio",
"cli",
"social-media",
"scheduling",
"automation",
"ai-agent",
"command-line",
"facebook",
"linkedin",
"twitter",
"instagram",
"tiktok",
"youtube",
"pinterest",
"gmb"
],
"author": "ContentStudio",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/d4interactive/contentstudio-agent.git"
},
"homepage": "https://api.contentstudio.io/guide",
"bugs": {
"url": "https://github.com/d4interactive/contentstudio-agent/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"chalk": "^4.1.2",
"form-data": "^4.0.1",
"node-fetch": "^2.7.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^20.11.19",
"@types/node-fetch": "^2.6.11",
"@types/yargs": "^17.0.32",
"nock": "^13.5.4",
"tsup": "^8.5.1",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}