-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.84 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "legibot",
"version": "1.4.3",
"description": "A discord bot that allows to do various things related to the french national assembly",
"repository": "https://github.com/M4xi1m3/legibot",
"author": "Maxime Friess <M4x1me@pm.me>",
"license": " GPL-3.0-or-later",
"private": false,
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.20",
"@types/lodash": "^4.14.182",
"@types/node": "^18.0.1",
"@types/string-format": "^2.0.0",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.30.4",
"@typescript-eslint/parser": "^5.30.4",
"eslint": "^8.19.0",
"husky": ">=6",
"lint-staged": ">=10",
"nodemon": "^2.0.18",
"prettier": "^2.7.1",
"ts-node": "^10.8.2",
"typescript": "^4.7.4",
"yarn-or-npm": "^3.0.1"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"craft": "ts-node src/craft.ts",
"prestart": "yon craft gen",
"start": "ts-node index.ts",
"prebuild": "yon craft gen",
"build": "tsc",
"debug": "nodemon index.ts",
"lint": "eslint . --ext .ts",
"format": "prettier --config .prettierrc '**/*.ts' --write",
"prepare": "husky install"
},
"dependencies": {
"@discordjs/opus": "^0.8.0",
"@discordjs/rest": "^0.5.0",
"@discordjs/voice": "^0.10.0",
"axios": "^0.27.2",
"canvas": "^2.9.3",
"canvas-hypertxt": "^0.0.5",
"csv-parse": "^5.3.0",
"discord-api-types": "^0.36.0",
"discord.js": "^13.8.1",
"dotenv": "^16.0.1",
"fast-xml-parser": "^4.0.8",
"ffmpeg-static": "^5.0.2",
"fluent-ffmpeg": "^2.1.2",
"html-entities": "^2.3.3",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"node-ical": "^0.15.1",
"sodium": "^3.0.2",
"string-format": "^2.0.0"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.--write": "prettier --write"
}
}