-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.25 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.25 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
{
"name": "rollrobot",
"private": true,
"version": "3.0.0-alpha.1",
"description": "Roll Robot is a Telegram bot for dice rolling.",
"keywords": ["rollrobot", "telegram", "bot", "roll", "dice", "random"],
"homepage": "https://github.com/edloidas/rollrobot",
"bugs": {
"url": "https://github.com/edloidas/rollrobot/issues",
"email": "edloidas@gmail.com"
},
"license": "MIT",
"author": "Mikita Taukachou <edloidas@gmail.com> (https://edloidas.io)",
"repository": {
"type": "git",
"url": "https://github.com/edloidas/rollrobot.git"
},
"type": "module",
"scripts": {
"start": "bun src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "bun run typecheck && bun run lint && bun run format:check",
"check:fix": "bun run typecheck && bun run lint:fix && bun run format",
"test": "bun test",
"test:watch": "bun test --watch",
"validate": "bun run check && bun run test"
},
"dependencies": {
"grammy": "^1.41.0",
"roll-parser": "^2.3.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"bun-types": "^1.3.10",
"typescript": "^5.7.2"
}
}