-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.34 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
{
"name": "bread",
"version": "1.0.0",
"description": "Discord Bot",
"main": "dist/index.js",
"type": "module",
"engines": {
"node": ">=20.6.0"
},
"scripts": {
"start": "node --import ./src/framework/register-loader.js dist/index.js",
"dev": "npm run build ; npm run start",
"bun": "bun src/index.ts",
"build": "rm -rf dist/ ; tsc ; npm run fix-files",
"fix-files": "cp -v src/framework/package.json dist/framework ; mv dist/framework/src dist/framework/dist",
"check": "eslint . ; tsc --noEmit",
"test": "npm run check",
"publish-commands": "npm run start -- --updateCommands",
"publish-commands-dev": "npm run publish-commands -- --commandDev"
},
"keywords": [],
"author": "AshyBoxy",
"license": "MIT",
"dependencies": {
"@discordjs/rest": "^2.4.0",
"discord-api-types": "^0.37.103",
"discord.js": "^14.16.3",
"leveldown": "^6.1.1",
"levelup": "^5.1.1",
"resolve": "^1.22.8"
},
"devDependencies": {
"@types/bun": "^1.1.12",
"@types/leveldown": "^4.0.6",
"@types/levelup": "^5.1.5",
"@types/node": "^22.8.6",
"@types/ws": "^8.5.12",
"eslint": "^9.14.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@stylistic/eslint-plugin": "^2.10.1",
"globals": "^15.11.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
}
}