-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.04 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.04 KB
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": "easel",
"version": "2.0.0",
"description": "Easel is a Discord Bot created to interact with Canvas and Panopto, acting as a bridge between Discord and University of Auckland hosted services to help students stay on top of content and deadlines.",
"main": "dist/index.js",
"repository": "https://github.com/Excigma/Easel.git",
"author": "@excigma",
"license": "MIT",
"packageManager": "yarn@4.7.0",
"type": "module",
"devDependencies": {
"@sapphire/ts-config": "^5.0.1",
"@types/node": "^22.13.13",
"@types/turndown": "^5.0.5",
"@types/ws": "^8.18.0",
"prettier": "3.6.2",
"prisma": "6.5.0",
"ts-standard": "^12.0.2",
"tsup": "^8.4.0",
"typescript": "^5.8.2"
},
"dependencies": {
"@discordjs/builders": "^1.10.1",
"@extractus/feed-extractor": "^7.1.4",
"@node-rs/xxhash": "^1.7.6",
"@prisma/client": "6.5.0",
"@sapphire/decorators": "^6.1.1",
"@sapphire/discord-utilities": "^3.4.4",
"@sapphire/discord.js-utilities": "^7.3.2",
"@sapphire/fetch": "^3.0.5",
"@sapphire/framework": "^5.3.2",
"@sapphire/pieces": "^4.3.1",
"@sapphire/plugin-hmr": "^3.0.2",
"@sapphire/plugin-logger": "^4.0.2",
"@sapphire/plugin-scheduled-tasks": "^10.0.2",
"@sapphire/plugin-subcommands": "^7.0.1",
"@sapphire/plugin-utilities-store": "^2.0.2",
"@sapphire/ratelimits": "^2.4.11",
"@sapphire/stopwatch": "^1.5.4",
"@sapphire/time-utilities": "^1.7.14",
"@sapphire/utilities": "^3.18.2",
"@yarnpkg/pnpify": "^4.1.4",
"bufferutil": "^4.0.9",
"discord-api-types": "^0.37.119",
"discord.js": "^14.18.0",
"esbuild": "0.25.1",
"html-entities": "^2.5.3",
"node-ical": "^0.20.1",
"smol-toml": "^1.3.1",
"turndown": "^7.2.0"
},
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"start": "node dist/index.js",
"dev": "tsup --watch --onSuccess \"node ./dist/index.js\"",
"deploy": "scripts/deploy.sh",
"logs": "scripts/logs.sh",
"forward": "scripts/forward.sh",
"lint": "prettier src --write"
}
}