-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 833 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 833 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
{
"name": "embot",
"version": "0.0.2",
"description": "A Discord bot core.",
"license": "ISC",
"author": "EmeraldBlock",
"main": "./dist/js/index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node --experimental-json-modules .",
"dev": "npx nodemon",
"lint": "npx eslint .",
"build": "node ./tools/clear-copy.js && npx tsc"
},
"dependencies": {
"chalk": "^4.1.1",
"discord.js": "^12.5.3"
},
"devDependencies": {
"@types/node": "^15.3.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-plugin-jsdoc": "^34.2.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"engines": {
"node": ">=16.7.0"
}
}