-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.22 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.22 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@harveyrandall/bsky-cli",
"version": "1.9.1",
"description": "A CLI client for Bluesky",
"type": "module",
"bin": {
"bsky": "dist/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"link:global": "yarn build && npm link",
"unlink:global": "npm unlink -g @harveyrandall/bsky-cli",
"prepublishOnly": "yarn typecheck && yarn test:run && yarn build",
"publish:npm": "npm publish --access public",
"release": "scripts/commit-version-bump.sh && git push --follow-tags",
"release:version": "scripts/commit-version-bump.sh",
"release:push": "git push --follow-tags"
},
"engines": {
"node": ">=22"
},
"packageManager": "yarn@4.13.0+sha512.5c20ba010c99815433e5c8453112165e673f1c7948d8d2b267f4b5e52097538658388ebc9f9580656d9b75c5cc996f990f611f99304a2197d4c56d21eea370e7",
"license": "MIT",
"homepage": "https://github.com/harveyrandall/bsky-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/harveyrandall/bsky-cli.git"
},
"bugs": {
"url": "https://github.com/harveyrandall/bsky-cli/issues"
},
"keywords": [
"bluesky",
"bsky",
"atproto",
"cli",
"social",
"command-line",
"command line",
"command line interface",
"social media",
"social network",
"decentralized",
"typescript",
"node",
"javascript",
"js",
"ts",
"atproto api",
"at protocol",
"authenticated transfer protocol",
"websocket"
],
"files": [
"dist/",
"README.md",
"LICENSE.md",
"CHANGELOG.md"
],
"exports": {
".": {
"import": "./dist/index.js"
}
},
"dependencies": {
"@atproto/api": "^0.19.1",
"chalk": "^5.6.2",
"cheerio": "^1.2.0",
"commander": "^14.0.3",
"croner": "10.0.1",
"rrule": "2.8.1",
"smol-toml": "^1.6.1",
"tslib": "^2.8.1",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/node": "^25.3.3",
"@types/semver": "^7.7.1",
"@types/ws": "^8",
"semver": "^7.7.4",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}