-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "marquinhosbot",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node -r tsconfig-paths/register src/index.ts",
"start:dev": "nodemon",
"start:prod": "node -r tsconfig-paths/register ./dist/index.js",
"build": "tsc --build && npm run copy-assets",
"prettier": "npx prettier --write \"src/**/*.ts\"",
"copy-assets": "copyfiles --all --up 1 \"./src/resources/**\" \"./dist\""
},
"author": "",
"license": "GPL-3.0",
"dependencies": {
"@discord-player/extractor": "^7.0.0",
"axios": "^1.6.8",
"canvas": "^2.11.2",
"color": "^4.2.3",
"discord-api-types": "^0.37.115",
"discord-player": "^7.0.0",
"discord-player-deezer": "^2.1.0",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"font-color-contrast": "^11.1.0",
"sharp": "^0.33.3",
"winston": "^3.13.0"
},
"devDependencies": {
"@types/color": "^3.0.6",
"@types/fuzzy-search": "^2.1.5",
"@types/node": "^20.12.5",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.4"
},
"engines": {
"node": "20.x"
},
"nodemonConfig": {
"ignore": [
"*.json"
],
"delay": "2500"
}
}