-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.91 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
60
61
62
63
64
65
66
{
"name": "Midjourney",
"version": "1.5.3",
"description": "A simple Midjourney bot for discord",
"type": "module",
"main": "dist/index.js",
"scripts": {
"start": "npm run build && node dist/index.js",
"clean:windows": "rmdir /s /q dist",
"clean:linux": "rm -rf dist",
"build": "tsc --project tsconfig.json",
"lint": "eslint . --cache --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix --cache --ext .js,.jsx,.ts,.tsx",
"format": "prettier --check .",
"format:fix": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/dawgcodes/Midjourney.git"
},
"bugs": {
"url": "https://github.com/dawgcodes/Midjourney/issues"
},
"homepage": "https://github.com/dawgcodes/Midjourney#readme",
"devDependencies": {
"@types/node": "^22.0.0",
"@types/signale": "^1.4.7",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unicorn": "^56.0.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2"
},
"keywords": [
"discord",
"gemini",
"bot",
"ai",
"generative",
"canvas",
"typescript",
"replicate"
],
"author": "dawgcodes",
"license": "GPL-3.0",
"signale": {
"displayScope": true,
"displayBadge": true,
"displayDate": true,
"displayFilename": true,
"displayLabel": true,
"displayTimestamp": true,
"underlineLabel": true
},
"dependencies": {
"@google/generative-ai": "^0.21.0",
"@napi-rs/canvas": "^0.1.52",
"discord.js": "^14.15.2",
"dotenv": "^16.4.5",
"replicate": "^1.0.0",
"signale": "^1.4.0",
"undici": "^7.0.0"
}
}