-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.78 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
58
59
60
61
62
63
64
{
"name": "peigombot",
"version": "4.0.0",
"description": "Discord bot with features for managing your server and creating all kinds of shenanigans.",
"main": "src/index.js",
"license": "GPL-3.0-or-later",
"scripts": {
"deploy": "npm run build && npm run start:deploy",
"start:deploy": "cross-env NODE_ENV=production node ./dist/index.js",
"dev": "cross-env NODE_ENV=development nodemon src/index.ts",
"build": "rm -rf dist && tsc",
"lint": "eslint -c ./.eslintrc.json ./src/**/*.ts",
"test": "node --loader tsx --test ./src/**/*test.ts",
"typecheck": "tsc --noEmit"
},
"author": {
"name": "Arttu Pennanen",
"email": "arttuinthewoods@gmail.com",
"url": "https://arttu.pennanen.org"
},
"repository": {
"type": "git",
"url": "https://github.com/Pennane/peigom-bot.git"
},
"dependencies": {
"@discordjs/opus": "^0.10.0",
"@discordjs/voice": "^0.18.0",
"@distube/ytdl-core": "^4.16.8",
"chalk": "^4.1.2",
"discord.js": "^14.18.0",
"dotenv": "^10.0.0",
"file-type": "^16.5.3",
"js-beautify": "^1.14.0",
"libsodium-wrappers": "^0.7.15",
"memoizee": "^0.4.15",
"node-schedule": "^2.1.1",
"sharp": "^0.29.3",
"simple-youtube-api": "^5.2.1"
},
"devDependencies": {
"@types/js-beautify": "^1.13.2",
"@types/memoizee": "^0.4.8",
"@types/node": "^16.6.1",
"@types/node-schedule": "^1.3.2",
"@types/sharp": "^0.28.5",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"cross-env": "^7.0.3",
"eslint": "^8.28.0",
"nodemon": "^2.0.12",
"ts-node": "^10.2.0",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
},
"nodemonConfig": {
"ignore": [
"*.json",
"node_modules"
]
},
"include": [
"src/**/*"
]
}