-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 902 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 902 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
35
{
"name": "markov-discord",
"version": "1.0.0",
"description": "Bot for text generation in Discord, based on markov chain",
"main": "index.ts",
"scripts": {
"tsc-init": "tsc --init",
"build": "tsc src/index.ts",
"dev": "ts-node src/index.ts",
"start": "tsc src/index.ts && node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/IgberZBN/Markov-discord.git"
},
"author": "Igber",
"license": "ISC",
"bugs": {
"url": "https://github.com/IgberZBN/Markov-discord/issues"
},
"homepage": "https://github.com/IgberZBN/Markov-discord#readme",
"dependencies": {
"colors": "^1.4.0",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"mongodb": "^6.1.0",
"ts-lib": "^0.0.5"
},
"devDependencies": {
"@types/mongodb": "^4.0.7",
"@types/node": "^20.8.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}