-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.11 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.11 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
{
"name": "@zernio/cli",
"version": "0.3.0",
"description": "CLI for Zernio - Schedule posts, manage inbox, broadcasts, sequences, and automations across 14 platforms",
"type": "module",
"bin": {
"late": "./dist/index.js",
"zernio": "./dist/index.js"
},
"main": "./dist/index.js",
"files": [
"dist",
"SKILL.md",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"social-media",
"scheduling",
"cli",
"ai-agent",
"instagram",
"tiktok",
"twitter",
"linkedin",
"facebook",
"threads",
"youtube",
"bluesky",
"pinterest"
],
"author": "Zernio <hello@zernio.com>",
"license": "MIT",
"homepage": "https://zernio.com",
"repository": {
"type": "git",
"url": "https://github.com/zernio-dev/zernio-cli"
},
"dependencies": {
"@zernio/node": "^0.2.37",
"open": "^10.1.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/yargs": "^17.0.32",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}