-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.48 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.48 KB
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
52
53
54
55
56
57
{
"name": "linkstart-bot",
"version": "2.0.0",
"description": "A discord bot wich play music and speak French",
"main": "src/index.js",
"scripts": {
"dev": "nodemon --watch src --exec node -r ts-node/register --env-file=.env src/index.ts",
"build": "npx tsc",
"start": "node --env-file=.env dist/index.js",
"test": "jest"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"./src/**"
],
"coverageThreshold": {
"global": {
"lines": 50
}
}
},
"author": "Garwalle",
"license": "WTFPL",
"dependencies": {
"@discord-player/equalizer": "^7.0.0",
"@discord-player/extractor": "^7.0.0",
"@discord-player/utils": "^7.0.0",
"@discordjs/voice": "^0.16.0",
"discord-api-types": "^0.32.0",
"discord-player": "^7.1.0",
"discord.js": "^14.12.1",
"jest": "^29.7.0",
"node-schedule": "^2.1.1",
"puppeteer": "^23.11.1",
"rcon-client": "^4.2.4",
"require-all": "^3.0.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/node-schedule": "^2.1.7",
"@types/require-all": "^3.0.6",
"eslint": "^8.14.0",
"nodemon": "^3.1.11",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MartinJeanne/Linkstart-bot.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/MartinJeanne/Linkstart-bot/issues"
},
"homepage": "https://github.com/MartinJeanne/Linkstart-bot#readme"
}