-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.24 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.24 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
{
"name": "meadow-bot",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"type": "module",
"scripts": {
"stop": "forever stop 0 || true",
"start": "forever start -a -e error.log -o out.log --uid production dist/main.js",
"restart": "npm run build -s && npm stop -s && npm start -s",
"clear-logs": "rm -rf error.log && rm -rf out.log",
"build": "rm -rf dist/ && tsc",
"dev": "nodemon -e js,json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/R-unic/meadow-bot.git"
},
"keywords": [
"discord",
"bot",
"ts",
"typescript",
"runes",
"meadow",
"runic"
],
"author": "R-unic",
"license": "MIT",
"bugs": {
"url": "https://github.com/R-unic/meadow-bot/issues"
},
"homepage": "https://github.com/R-unic/meadow-bot#readme",
"dependencies": {
"@discordx/importer": "^1.3.0",
"@discordx/utilities": "^6.3.2",
"@rollup/plugin-commonjs": "^25.0.7",
"deepl-node": "^1.12.0",
"discord.js": "^14.14.1",
"discordx": "^11.9.0",
"dotenv": "^16.4.5",
"roman-numerals": "^0.3.2"
},
"devDependencies": {
"@types/roman-numerals": "^0.3.2",
"forever": "^4.0.3",
"nodemon": "^3.1.0",
"typescript": "^5.6.2"
}
}