-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
44 lines (44 loc) · 1.37 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
{
"name": "skyline-bot",
"version": "1.0.0",
"description": "This is the bot for the official Skyline Emulator Discord Server",
"type": "module",
"main": "main.js",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"start": "tsc --build && node build/main.js",
"update": "tsc --build && node build/common/updateCommands.js",
"tscw": "tsc-watch --onSuccess \"node ./build/main.js\"",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skyline-emu/skyline-bot.git"
},
"author": "https://github.com/skyline-emu/skyline-bot/contributors",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/skyline-emu/skyline-bot/issues"
},
"homepage": "https://github.com/skyline-emu/skyline-bot#readme",
"dependencies": {
"@octokit/rest": "^19.0.5",
"@types/node-fetch": "^2.6.2",
"@types/ws": "^8.5.4",
"discord.js": "^14.8.0",
"node-fetch": "^3.3.0"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"tsc-watch": "^6.0.0",
"typescript": "^4.9.4"
}
}