-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.86 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
57
58
59
{
"name": "midori",
"version": "1.1.0",
"description": "Midori is a Discord bot. Currently, the bot offers users the text to image functionality of the Stable Diffusion API when prompted. It supports slash commands. The primary functionality includes generating and posting images to Discord.",
"main": "src/app.ts",
"private": true,
"scripts": {
"start": "node dist/app.js",
"dev": "nodemon --inspect=0.0.0.0:9331 --exec 'ts-node src/app.ts --watch src --trace-warnings'",
"test": "nodemon --harmony --delay 500ms --inspect=9331 dist/app.js --exec 'node --trace-warnings'",
"build": "tsc",
"postinstall": "tsc",
"watch": "tsc -w",
"pm2": "pm2 start dist/app.js --name=Midori --node-args=\"--inspect --inspect-port=9331 --harmony\"",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --fix --ext .ts src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/soulwax/Midori.git"
},
"keywords": [
"stability-ai",
"midori",
"discord",
"discord.js",
"discord bot",
"image generation",
"image enhancement",
"image manipulation"
],
"author": "github@soulwax",
"license": "LGPL-3.0-or-later",
"dependencies": {
"@discordjs/rest": "^2.4.0",
"axios": "^1.7.9",
"discord.js": "^14.16.3",
"dotenv": "^16.4.7",
"fetch": "^1.1.0",
"https": "^1.0.0",
"node-html-parser": "^6.1.13",
"path": "^0.12.7",
"process": "^0.11.10",
"tsconfig-paths": "^4.2.0"
},
"devDependencies": {
"@types/node": "^20.17.9",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"discord-api-types": "^0.37.110",
"eslint": "^7.32.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^3.1.7",
"prettier": "^2.8.8",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}