forked from Inertia-Lighting/discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.72 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.72 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
{
"name": "discord-bot",
"version": "3.0.0",
"description": "",
"keywords": [],
"author": "Inertia Lighting",
"license": "UNLICENSED",
"main": "./dist/index.js",
"_moduleAliases": {
"@root": "./dist"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"husky": "is-ci || husky install",
"lint": "npx eslint .",
"clean": "run-script-os",
"clean:windows": "if exist \".\\dist\" rmdir /s /q \".\\dist\"",
"clean:linux": "rm -rf ./dist",
"build": "npm run clean && tsc --build",
"prepare": "npm run husky && npm run lint && npm run build",
"test": "npm run prepare",
"title": "run-script-os",
"title:windows": "title Inertia Lighting Discord Bot",
"title:default": "",
"start": "npm run prepare && npm run title && node --trace-warnings --enable-source-maps --require dotenv/config ."
},
"devDependencies": {
"@types/string-similarity": "4.0.0",
"@types/uuid": "9.0.1",
"@typescript-eslint/eslint-plugin": "5.59.8",
"@typescript-eslint/parser": "5.59.8",
"eslint": "8.42.0",
"husky": "8.0.3",
"is-ci": "3.0.1",
"run-script-os": "1.1.6",
"typescript": "5.1.3"
},
"dependencies": {
"axios": "1.4.0",
"bufferutil": "4.0.7",
"discord-html-transcripts": "3.1.4",
"discord.js": "14.11.0",
"dotenv": "16.1.3",
"go-mongo-db": "github:Inertia-Lighting/go-mongo-db#v1.4.0-stable",
"module-alias": "2.2.3",
"moment-timezone": "0.5.43",
"node-gyp": "9.3.1",
"recursive-read-directory": "github:MidSpike/recursive-read-directory#v0.0.1-beta",
"string-similarity": "4.0.4",
"utf-8-validate": "6.0.3",
"uuid": "9.0.0"
}
}