This repository has been archived by the owner on Aug 27, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.48 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
{
"name": "ntts-hackathon",
"version": "0.0.1",
"description": "A discord bot for the NTTS hackathon",
"main": "src/index.js",
"author": "Neon <neon@saahild.com>",
"license": "MIT",
"private": false,
"funding": [
{
"type": "individual",
"url": "http://ko-fi.com/saahil"
}
],
"engines": {
"node": ">=18"
},
"devDependencies": {
"eslint": "^8.56.0",
"husky": "^9.0.10",
"lint-staged": "^15.2.2",
"nodemon": "^3.0.3",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"readme-md-generator": "^1.0.0"
},
"scripts": {
"start": "node src/index.js",
"lint": "eslint .",
"format": "prettier --write .",
"precommit": "lint-staged",
"dev": "nodemon src/index.js",
"prepare": "husky"
},
"dependencies": {
"@discordjs/voice": "^0.16.1",
"@google/generative-ai": "^0.2.1",
"better-sqlite3": "^9.4.3",
"canvas": "^2.11.2",
"discord-gamecord": "^4.4.1",
"discord-html-transcripts": "^3.2.0",
"discord-image-generation": "^1.4.25",
"discord-timestamps": "^0.1.4",
"discord.js": "^14.14.1",
"dotenv": "latest",
"form-data": "^4.0.0",
"gifencoder": "^2.0.1",
"node-fetch": "^2.6.7",
"pretty-ms": "^9.0.0",
"quick.db": "^9.1.7",
"request": "^2.88.2",
"simple-json-db": "^2.0.0",
"yaml": "^2.3.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.{js,jsx}": [
"prettier --write",
"eslint --fix ."
]
}
}