-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 903 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 903 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
{
"name": "expresso",
"version": "1.0.0",
"description": "Render LaTeX, Typst and soon other typesetting systems seamlessly inside Discord. To prevent rendering issues, the bot previews the output as an ephemeral message (which only you can see) before you can approve it and show it to other users. This allows for less flood inside channels and an all i one bot, which you can add to your account to render LaTeX and Typst in any Discord server.",
"main": "dist/index.js",
"author": "qwkun",
"license": "ISC",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"deploy": "ts-node src/deploy-commands.ts"
},
"dependencies": {
"discord.js": "^14.26.0",
"typst-raster": "^1.2.2"
},
"devDependencies": {
"@types/node": "^25.5.0",
"nodemon": "^3.1.14",
"ts-node": "^10.9.2",
"typescript": "^6.0.2"
}
}