-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 815 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 815 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
{
"name": "telecli",
"version": "0.2.0",
"description": "Thin CLI wrapper around the Telegram Bot API",
"type": "module",
"bin": {
"tg": "./src/index.ts"
},
"scripts": {
"test": "bun test",
"typecheck": "tsgo --noEmit",
"lint": "oxlint src/ tests/",
"format": "oxfmt src/ tests/",
"format:check": "oxfmt --check src/ tests/",
"check": "bun run typecheck && bun run lint && bun run format:check && bun test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danizord/telecli.git"
},
"keywords": ["telegram", "bot", "cli", "api"],
"author": "Daniel Gimenes",
"license": "MIT",
"devDependencies": {
"@typescript/native-preview": "^7.0.0-dev.20260102.1",
"bun-types": "^1.3.5",
"oxfmt": "^0.21.0",
"oxlint": "^1.36.0"
}
}