-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
74 lines (74 loc) · 2.29 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
65
66
67
68
69
70
71
72
73
74
{
"name": "iris-utilities",
"version": "3.0.0",
"description": "",
"author": "MidSpike",
"keywords": [],
"license": "I.R.I.S. Utilities License",
"type": "commonjs",
"main": "./dist/index.js",
"_moduleAliases": {
"@root": "./dist"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"hook": "is-ci || husky",
"lint": "npx eslint .",
"clean": "run-script-os",
"clean:windows": "if exist \".\\dist\" rmdir /s /q \".\\dist\"",
"clean:linux": "rm -rf ./dist",
"build": "npm run clean && tsc --build",
"prepare": "npm run hook && npm run lint && npm run build",
"test": "npm run prepare",
"title": "run-script-os",
"title:windows": "title I.R.I.S. Utilities v3.0.0",
"title:default": "",
"start": "npm run prepare && npm run title && node --trace-warnings --enable-source-maps --require dotenv/config ."
},
"devDependencies": {
"@types/bcryptjs": "2.4.6",
"@types/string-similarity": "4.0.2",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.9.0",
"eslint": "8.56.0",
"eslint-plugin-deprecation": "2.0.0",
"husky": "9.0.11",
"is-ci": "3.0.1",
"run-script-os": "1.1.6",
"typescript": "5.4.5"
},
"dependencies": {
"@discordjs/opus": "0.9.0",
"@discordjs/voice": "0.17.0",
"@distube/ytdl-core": "4.13.3",
"@mapbox/node-pre-gyp": "1.0.11",
"@midspike/discord-speech-recognition": "github:MidSpike/discord-speech-recognition#v3.4.0",
"aki-api": "6.0.9",
"axios": "1.6.8",
"discord.js": "14.15.2",
"dotenv": "16.4.5",
"ffmpeg-static": "5.2.0",
"ffmpeg-stream": "0.7.0",
"go-mongo-db": "github:MidSpike/go-mongo-db#v2.1.0",
"google-translate-tts": "github:MidSpike/google-translate-tts#v2.1.0",
"html-entities": "2.5.2",
"libsodium-wrappers": "0.7.13",
"manakin": "0.5.2",
"mathjs": "12.4.2",
"module-alias": "2.2.3",
"moment-timezone": "0.5.45",
"node-gyp": "10.1.0",
"node-html-to-image": "4.0.0",
"opusscript": "0.1.1",
"recursive-read-directory": "github:MidSpike/recursive-read-directory#v0.4.0-beta",
"sodium-native": "4.1.1",
"soundcloud-scraper": "5.0.3",
"string-similarity": "4.0.4",
"tweetnacl": "1.0.3",
"uuid": "9.0.1",
"youtube-sr": "4.3.11"
}
}