posterboy 0.1.5

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 (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +107 -0
  3. package/dist/index.js +3645 -0
  4. package/package.json +57 -0
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "posterboy",
3
+ "version": "0.1.5",
4
+ "description": "CLI for posting to social media via Upload-Post.com API",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "bin": {
8
+ "posterboy": "./dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "README.md",
13
+ "LICENSE"
14
+ ],
15
+ "scripts": {
16
+ "dev": "bun run src/index.ts",
17
+ "build": "bun build src/index.ts --outdir dist --target node --format esm && sed -i.bak '1s|#!/usr/bin/env bun|#!/usr/bin/env node|' dist/index.js && rm -f dist/index.js.bak && chmod +x dist/index.js",
18
+ "build:binary": "bun build src/index.ts --compile --outfile posterboy",
19
+ "test": "bun test",
20
+ "typecheck": "bunx tsc --noEmit",
21
+ "lint": "bunx eslint src/ tests/",
22
+ "prepublishOnly": "bun run build"
23
+ },
24
+ "publishConfig": {
25
+ "access": "public"
26
+ },
27
+ "keywords": [
28
+ "social-media",
29
+ "cli",
30
+ "upload-post",
31
+ "tiktok",
32
+ "instagram",
33
+ "youtube",
34
+ "linkedin",
35
+ "facebook",
36
+ "twitter",
37
+ "threads",
38
+ "bluesky",
39
+ "posting"
40
+ ],
41
+ "license": "MIT",
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "https://github.com/agileguy/posterboy.git"
45
+ },
46
+ "dependencies": {
47
+ "upload-post": "^1.0.0"
48
+ },
49
+ "devDependencies": {
50
+ "@eslint/js": "^9.18.0",
51
+ "@types/bun": "^1.3.0",
52
+ "@typescript-eslint/eslint-plugin": "^8.19.1",
53
+ "@typescript-eslint/parser": "^8.19.1",
54
+ "eslint": "^9.18.0",
55
+ "typescript": "^5.7.0"
56
+ }
57
+ }