-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 787 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 787 Bytes
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
{
"name": "minecode-discord-bot",
"version": "0.0.1",
"main": "dist/main.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"start": "node dist/main.js",
"dev": "tsx main.ts",
"test": "vitest",
"check": "tsc --noEmit",
"format": "prettier --write --ignore-path .gitignore './**/*.{js,jsx,ts,tsx,json}'"
},
"dependencies": {
"@types/mathjax-node": "^2.1.0",
"discord.js": "^14.14.1",
"dotenv": "^16.1.3",
"mathjax-node": "^2.1.1",
"sharp": "^0.34.2",
"typescript": "^5.1.3",
"valibot": "^1.1.0"
},
"devDependencies": {
"@types/mathjax": "^0.0.40",
"prettier": "^3.5.3",
"tsx": "^4.20.3",
"vitest": "^3.2.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
}
}