-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.62 KB
/
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
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
{
"name": "botto",
"version": "0.0.2",
"description": "🦦 just another discord bot",
"main": "index.js",
"type": "module",
"keywords": [],
"author": "",
"license": "MIT",
"scripts": {
"build": "run-s build:*",
"build:clean": "rimraf dist",
"build:index": "tsc",
"dev": "node --no-warnings --loader ts-node/esm --watch src/index.ts",
"dev:debug": "node --no-warnings --loader ts-node/esm --watch --inspect src/index.ts",
"start": "node dist/index.js",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"ci:build": "node --no-warnings --loader ts-node/esm ci/build.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@dagger.io/dagger": "^0.8.7",
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.0",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"execa": "^8.0.1",
"inversify": "^6.0.1",
"libsodium-wrappers": "^0.7.13",
"reflect-metadata": "^0.1.13",
"tiny-invariant": "^1.3.1",
"winston": "^3.11.0",
"ytsr": "^3.8.4",
"zod": "^3.22.4"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^18.17.0",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-require-extensions": "^0.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18.11.0"
}
}