forked from Xeio/IdleCodeRedeemer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.19 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.19 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
{
"name": "idle-code-redeemer-bot",
"version": "2.0.0",
"description": "Discord bot for Idle Champions code scanning and redemption",
"main": "dist/bot/bot.js",
"docs": "docs",
"scripts": {
"typecheck": "tsc -p tsconfig.bot.json",
"test": "bun test",
"test:watch": "bun test --watch",
"build": "bun build --compile --bytecode --minify --sourcemap src/bot/bot.ts --outfile dist-bundle/bot",
"start": "./dist-bundle/bot",
"dev": "bun run --bun src/bot/bot.ts",
"db:generate": "drizzle-kit generate",
"db:studio": "drizzle-kit studio",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "syncpack fix --source 'package.json' && prettier --write \"src/**/*.{ts,md}\" \"docs/**/*.md\" \".github/**/*.{yml,yaml}\" \".mise.toml\" \"Dockerfile*\" \"*.json\"",
"format:check": "syncpack list-mismatches --source 'package.json' && prettier --check \"src/**/*.{ts,md}\" \"docs/**/*.md\" \".github/**/*.{yml,yaml}\" \".mise.toml\" \"Dockerfile*\" \"*.json\"",
"pre-commit": "lint-staged",
"prepare": "husky"
},
"keywords": [
"discord",
"bot",
"idle-champions"
],
"author": "",
"license": "ISC",
"dependencies": {
"discord.js": "14.26.4",
"drizzle-orm": "0.45.2",
"winston": "3.19.0"
},
"devDependencies": {
"@commitlint/config-conventional": "21.0.0",
"@eslint/js": "10.0.1",
"@tsconfig/bun": "1.0.10",
"@types/bun": "1.3.14",
"@typescript-eslint/eslint-plugin": "8.59.2",
"@typescript-eslint/parser": "8.59.2",
"commitlint": "21.0.0",
"drizzle-kit": "0.31.10",
"eslint": "10.3.0",
"husky": "9.1.7",
"lint-staged": "17.0.3",
"prettier": "3.8.3",
"prettier-plugin-sh": "0.18.1",
"prettier-plugin-toml": "2.0.6",
"syncpack": "15.0.0",
"typescript": "6.0.3"
},
"peerDependencies": {
"typescript": "6.0.3"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{md,yml,yaml}": [
"prettier --write"
],
"package.json": [
"syncpack fix --source",
"prettier --write"
],
"Dockerfile*": [
"prettier --write"
],
"*.json": [
"prettier --write"
]
}
}