-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 835 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 835 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
35
{
"name": "detritus-discord-bot-javascript",
"version": "0.1.0",
"description": "A discord bot made using Detritus library",
"main": "src/index.js",
"scripts": {
"format": "prettier --write .",
"lint": "eslint --fix . --ignore-path .gitignore",
"start": "node src/index.js",
"dev": "node --watch src src/index.js"
},
"keywords": [
"detritus",
"discord",
"bot"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.16.19",
"dotenv": "^16.3.1",
"eslint": "^8.45.0",
"prettier": "^3.0.0",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-packagejson": "^2.4.5"
},
"dependencies": {
"detritus-client": "^0.17.0-beta.16",
"detritus-utils": "^0.4.0"
},
"engines": {
"node": ">=20"
},
"engineStrict": true
}