bsky-cli 1.0.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/CHANGELOG.md +141 -0
- package/LICENSE +21 -0
- package/README.md +616 -0
- package/dist/index.js +58455 -0
- package/package.json +67 -0
package/package.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "bsky-cli",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Command-line interface for Bluesky/ATProto social networking",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"bluesky",
|
|
7
|
+
"cli",
|
|
8
|
+
"atproto",
|
|
9
|
+
"social",
|
|
10
|
+
"bsky",
|
|
11
|
+
"at-protocol",
|
|
12
|
+
"social-network",
|
|
13
|
+
"command-line"
|
|
14
|
+
],
|
|
15
|
+
"author": "agileguy",
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/agileguy/bluesky-cli.git"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/agileguy/bluesky-cli#readme",
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/agileguy/bluesky-cli/issues"
|
|
24
|
+
},
|
|
25
|
+
"main": "dist/index.js",
|
|
26
|
+
"module": "src/index.ts",
|
|
27
|
+
"type": "module",
|
|
28
|
+
"bin": {
|
|
29
|
+
"bsky": "./dist/index.js"
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist",
|
|
33
|
+
"README.md",
|
|
34
|
+
"LICENSE",
|
|
35
|
+
"CHANGELOG.md"
|
|
36
|
+
],
|
|
37
|
+
"engines": {
|
|
38
|
+
"bun": ">=1.0.0",
|
|
39
|
+
"node": ">=18.0.0"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {
|
|
42
|
+
"build": "bun build src/index.ts --outdir dist --target node --format esm",
|
|
43
|
+
"dev": "bun run src/index.ts",
|
|
44
|
+
"test": "bun test",
|
|
45
|
+
"lint": "eslint src",
|
|
46
|
+
"format": "prettier --write src",
|
|
47
|
+
"format:check": "prettier --check src",
|
|
48
|
+
"type-check": "tsc --noEmit"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@types/bun": "latest",
|
|
52
|
+
"@typescript-eslint/eslint-plugin": "^8.54.0",
|
|
53
|
+
"@typescript-eslint/parser": "^8.54.0",
|
|
54
|
+
"eslint": "^9.39.2",
|
|
55
|
+
"prettier": "^3.8.1"
|
|
56
|
+
},
|
|
57
|
+
"peerDependencies": {
|
|
58
|
+
"typescript": "^5"
|
|
59
|
+
},
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"@atproto/api": "^0.18.20",
|
|
62
|
+
"chalk": "^5.6.2",
|
|
63
|
+
"cli-table3": "^0.6.5",
|
|
64
|
+
"commander": "^14.0.3",
|
|
65
|
+
"ora": "^9.3.0"
|
|
66
|
+
}
|
|
67
|
+
}
|