-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 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
{
"name": "canvas-bot",
"version": "1.0.0",
"description": "Monitor upcoming assignments from canvas and SAM via discord.",
"main": "index.js",
"scripts": {
"test": "npx eslint src *.js",
"init-db": "node ./scripts/initialize-database.js",
"init-config": "cp -i ./.config.example.json ./.config.json",
"start": "node index.js"
},
"keywords": [],
"contributors": [
{
"name": "Cammy",
"url": "https://github.com/CammyFentreux"
},
{
"name": "Tom",
"url": "https://github.com/Douile"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/discord-canvas/Discord-Canvas-Bot.git"
},
"bugs": {
"url": "https://github.com/discord-canvas/Discord-Canvas-Bot/issues"
},
"homepage": "https://github.com/discord-canvas/Discord-Canvas-Bot#readme",
"dependencies": {
"@douile/bot-utilities": "^1.3",
"discord.js-light": "^4.10",
"dotenv": "^16.0",
"node-fetch": "^2.6",
"node-html-parser": "^6.1",
"simple-git": "^3.16",
"sqlite3": "^5.1"
},
"optionalDependencies": {
"bufferutil": "^4.0",
"erlpack": "github:discord/erlpack",
"utf-8-validate": "^6.0",
"zlib-sync": "^0.1"
},
"devDependencies": {
"eslint": "^8.32.0"
}
}