-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 969 Bytes
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 969 Bytes
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
{
"name": "@kud/bsky-cli",
"version": "0.1.0",
"description": "A full Bluesky client for your terminal — post, thread, reply, browse, and manage, scriptable or interactive",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kud/bsky-cli.git"
},
"homepage": "https://kud.io/projects/bsky-cli",
"keywords": [
"bluesky",
"atproto",
"cli",
"tui",
"social"
],
"bin": {
"bsky": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@inkjs/ui": "2.0.0",
"@kud/bsky": "0.1.0",
"citty": "0.2.2",
"ink": "7.0.6",
"react": "19.2.7"
},
"devDependencies": {
"@types/node": "26.0.0",
"@types/react": "19.2.17",
"tsup": "8.5.1",
"tsx": "4.22.4",
"typescript": "6.0.3"
}
}