-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
63 lines (63 loc) · 1.83 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
59
60
61
62
63
{
"name": "discord-bot",
"version": "3.0.0",
"description": "",
"keywords": [],
"author": "Inertia Lighting",
"license": "UNLICENSED",
"type": "commonjs",
"main": "./dist/index.js",
"_moduleAliases": {
"@root": "./dist"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"hook": "is-ci || husky install || true",
"lint": "npx eslint src",
"clean": "run-script-os",
"clean:windows": "if exist \".\\dist\" rmdir /s /q \".\\dist\"",
"clean:linux": "rm -rf ./dist",
"clean:default": "rm -rf ./dist",
"build": "yarn clean && tsc --build",
"title": "run-script-os",
"title:windows": "title Inertia Lighting Discord Bot",
"title:default": "",
"start": "yarn title && node --trace-warnings --enable-source-maps --require module-alias/register ."
},
"devDependencies": {
"@types/string-similarity": "4.0.2",
"@types/uuid": "9.0.8",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"eslint": "8.57.0",
"eslint-plugin-deprecation": "2.0.0",
"husky": "9.0.11",
"is-ci": "3.0.1",
"run-script-os": "1.1.6",
"typescript": "5.4.2"
},
"dependencies": {
"axios": "1.6.8",
"bufferutil": "4.0.8",
"discord-html-transcripts": "3.2.0",
"discord.js": "14.14.1",
"dotenv": "16.4.5",
"go-mongo-db": "github:MidSpike/go-mongo-db",
"lowdb": "^7.0.1",
"module-alias": "2.2.3",
"moment-timezone": "0.5.45",
"node-gyp": "10.0.1",
"recursive-read-directory": "github:MidSpike/recursive-read-directory#v0.4.0-beta",
"string-similarity": "4.0.4",
"utf-8-validate": "6.0.3",
"uuid": "9.0.1"
},
"resolutions": {
"strip-ansi": "6.0.1",
"string-width": "4.2.2",
"wrap-ansi": "7.0.0"
}
}