-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 855 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 855 Bytes
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
{
"name": "pairing-bot",
"version": "0.0.1",
"description": "A bot designed to pair two people on a server.",
"main": "dist/index.js",
"author": "Blockzilla101",
"license": "MIT",
"private": true,
"type": "module",
"devDependencies": {
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"prettier": "^3.0.0",
"tsx": "^4.7.0",
"typescript": "^5.1.6"
},
"dependencies": {
"chalk": "^5.3.0",
"cron": "^3.1.6",
"discord.js": "^14.11.0",
"dotenv": "^16.3.1",
"emittery": "^1.0.1",
"node-sqlite-orm": "^1.0.1"
},
"scripts": {
"build": "yarn lint && tsc",
"clean": "rm -rf dist",
"lint": "eslint src/ --ext .ts",
"fix": "eslint src/ --ext .ts --fix",
"dev": "tsx src/index.ts"
}
}