-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
31 lines (31 loc) · 902 Bytes
/
package.json
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
{
"version": "1.0.0",
"private": true,
"name": "hanamibot",
"type": "module",
"main": "src/index.ts",
"scripts": {
"check": "tsc && eslint",
"start": "bun .",
"build": "bun scripts/build.ts",
"prod": "bun run build && bun run start"
},
"dependencies": {
"@lilybird/handlers": "^0.5.0",
"@lilybird/transformers": "^0.4.1",
"lilybird": "^0.7.1",
"osu-web.js": "^2.4.0",
"playwright": "^1.44.0",
"rosu-pp-js": "^2.0.0",
"tasai": "^1.0.0"
},
"devDependencies": {
"@types/bun": "latest",
"eslint": "^8.55.0",
"@typescript-eslint/parser": "^6.13.2",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@stylistic/eslint-plugin": "^1.4.1",
"eslint-plugin-import": "^2.29.0",
"eslint-import-resolver-typescript": "^3.6.1"
}
}