-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.42 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.42 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
{
"name": "beepctl",
"version": "0.1.6",
"description": "CLI for Beeper Desktop API - unified messaging from terminal",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"bin": {
"beepctl": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "pnpm run build",
"build": "tsc",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check . && oxlint",
"lint:fix": "biome check --write . && oxlint --fix",
"lint:biome": "biome check .",
"lint:oxlint": "oxlint",
"binary": "bun build --compile src/cli.ts --outfile beepctl",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@beeper/desktop-api": "^4.7.0",
"commander": "^14.0.0",
"kleur": "^4.1.5"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@types/node": "^22.0.0",
"oxlint": "^1.39.0",
"tsx": "^4.21.0",
"typescript": "^5.9.0",
"vitest": "^4.0.0"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.11.0",
"repository": {
"type": "git",
"url": "git+https://github.com/blqke/beepctl.git"
},
"bugs": {
"url": "https://github.com/blqke/beepctl/issues"
},
"homepage": "https://github.com/blqke/beepctl#readme",
"author": "blqke",
"keywords": [
"cli",
"beeper",
"messaging",
"chat",
"terminal",
"matrix",
"clawdbot",
"moltbot",
"openclaw"
]
}