-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 859 Bytes
/
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
{
"name": "shapestack",
"version": "0.0.2",
"description": "A Discord bot with functions related to shapez.io.",
"license": "GPL-3.0-only",
"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": {
"canvas": "^2.8.0",
"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"
}
}