-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.42 KB
/
package.json
File metadata and controls
57 lines (57 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
{
"name": "junior-hizollo",
"version": "1.1.1",
"description": "用 TypeScript 寫成的爛 bot",
"main": "dist/src/index.js",
"private": true,
"engines": {
"node": ">=16.9.0"
},
"scripts": {
"dev": "tsc-watch --onSuccess resolve-tspaths",
"w": "rimraf dist && yarn dev",
"build": "tsc",
"postbuild": "resolve-tspaths",
"deploy": "node dist/src/deploy.js",
"rg-webhook": "node dist/src/register-webhook.js",
"start": "node dist/src/index.js",
"test": "node dist/src/index.js dev",
"t": "yarn test",
"format": "prettier --write src/**/*.{ts,js,json,yaml,yml}",
"fmt": "yarn format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HiZollo/Junior-HiZollo.git"
},
"keywords": [
"HiZollo"
],
"author": "HiZollo Organization",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/HiZollo/Junior-HiZollo/issues"
},
"homepage": "https://github.com/HiZollo/Junior-HiZollo#readme",
"dependencies": {
"@discordjs/voice": "^0.13.0",
"@hizollo/games": "^2.4.0",
"@hizollo/osu-api": "^1.2.0",
"@types/ms": "^0.7.31",
"discord.js": "^14.6.0",
"dotenv": "^16.0.3",
"emoji-regex": "^10.2.1",
"ffmpeg-static": "^5.1.0",
"libsodium-wrappers": "^0.7.10",
"ms": "^2.1.3",
"play-dl": "^1.9.6",
"quickmongo": "^5.2.0",
"typescript": "^4.9.3",
"zod": "^3.20.2"
},
"devDependencies": {
"prettier": "^2.8.1",
"resolve-tspaths": "^0.8.3",
"tsc-watch": "^5.0.3"
}
}