-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 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
{
"name": "wol-discord",
"version": "0.0.3",
"description": "Discord bot that can wake a device with Wake-On-Lan",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"copyLocales": "cp -r ./src/locales ./build/locales",
"clean": "rm -rf ./build",
"build": "tsc && npm run copyLocales",
"start": "node ./build/index.js",
"build:dev": "npm run clean && npm run build",
"build:start": "npm run clean && npm run build && npm run start",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/testsnake/WOL-Discord.git"
},
"author": "testsnake",
"license": "MIT",
"bugs": {
"url": "https://github.com/testsnake/WOL-Discord/issues"
},
"homepage": "https://github.com/testsnake/WOL-Discord#readme",
"devDependencies": {
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"dependencies": {
"@discordx/importer": "^1.3.0",
"@discordx/utilities": "^6.1.0",
"@types/ping": "^0.4.4",
"@types/wake_on_lan": "^0.0.33",
"discord.js": "^14.14.1",
"discordx": "^11.9.0",
"dotenv": "^16.4.5",
"i18next": "^23.10.0",
"i18next-fs-backend": "^2.3.1",
"ping": "^0.4.4",
"pino": "^8.19.0",
"pino-pretty": "^10.3.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"wake_on_lan": "^1.0.0"
},
"packageManager": "[email protected]"
}