-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.59 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
{
"name": "jambo",
"version": "1.0.0",
"description": "A bot to manage a whole game jam server from a fully functional poll-system to managing color roles.",
"main": "dist/start.js",
"private": "true",
"type": "module",
"scripts": {
"prettify": "eslint ./src/ --fix && npx prettier -w .",
"build": "tsc -p tsconfig.json",
"run": "node --experimental-specifier-resolution=node --enable-source-maps .",
"start": "npm run build && npm run run",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cowoding-Jams/Jambo.git"
},
"contributors": [
"Leonie - KommentatorForAll",
"Lucy - BlackDemonFire",
"Antti - Chicken",
"WilsonTheWolf (https://shorty.systems/)",
"Murph - StrangeGirlMurph",
"Amber - UselessAmber",
"Floschy - flloschy",
"Riley - Exonorid",
"Kryal - Da-Real-Kryall",
"Ian - IanToujou"
],
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/Cowoding-Jams/Jambo/issues"
},
"homepage": "https://github.com/Cowoding-Jams/Jambo",
"devDependencies": {
"@types/luxon": "^3.2.0",
"@types/node-cron": "^3.0.7",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"discord-api-types": "^0.37.37",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"prettier": "^2.8.7",
"typescript": "^5.0.2"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.39",
"discord.js": "^14.8.0",
"dotenv": "^16.0.3",
"enmap": "github:Cowoding-Jams/enmap",
"luxon": "^3.3.0",
"node-cron": "^3.0.2",
"node-fetch": "^3.3.1",
"winston": "^3.8.2"
}
}