-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.87 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
{
"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 ; npm run symlink-sub-node-modules ; npm run copy-sub-symlinks",
"symlink-sub-node-modules": "find src/subs -type d -name node_modules -exec bash -c 'ln -sv \"$(dirname \"$(echo \"$1\" | sed \"s|[^/]*/|../|g\")\")/$1\" \"dist${1#src}\"' _ {} \\;",
"copy-sub-symlinks": "find src/subs -type d -name node_modules -prune -o -type l -exec sh -c 'cp -Pv \"$1\" \"dist${1#src}\"' _ {} \\;",
"check": "eslint . ; tsc --noEmit",
"test": "npm run check",
"publish-commands": "npm run start -- --cmdupdate",
"publish-commands-dev": "npm run publish-commands -- --cmddev"
},
"keywords": [],
"author": "AshyBoxy",
"license": "MIT",
"dependencies": {
"@discordjs/rest": "^2.6.0",
"discord-api-types": "^0.38.22",
"discord.js": "^14.26.4",
"fast-fuzzy": "^1.12.0",
"leveldown": "^6.1.1",
"levelup": "^5.1.1",
"resolve": "^1.22.10"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/bun": "^1.2.21",
"@types/leveldown": "^4.0.6",
"@types/levelup": "^5.1.5",
"@types/node": "^25.8.0",
"@types/ws": "^8.18.1",
"eslint": "^10.3.0",
"globals": "^15.15.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3"
},
"optionalDependencies": {
"@keyv/sqlite": "^4.0.5",
"finnhub": "^2.0.7",
"keyv": "^5.3.4",
"zod": "^4.1.5"
}
}