forked from brandonapt/roblox-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.1 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
{
"name": "roblox-manager",
"version": "3.0.0",
"description": "A Discord bot that allows you to manage your Roblox group and game",
"main": "index.ts",
"scripts": {
"winBuild": "rd build /s /q & cls & npx tsc --project ./",
"linuxBuild": "rm build -r ; clear ; npx tsc --project ./",
"winStart": "npm run winBuild & node build/index.js",
"linuxStart": "npm run linuxBuild ; node build/index.js",
"startWithNoBuild": "node build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zachariapopcorn/rbx-manager.git"
},
"author": "zachariapopcorn#8105",
"license": "ISC",
"bugs": {
"url": "https://github.com/zachariapopcorn/rbx-manager/issues"
},
"homepage": "https://github.com/zachariapopcorn/rbx-manager#readme",
"dependencies": {
"body-parser": "^1.20.2",
"discord.js": "^14.11.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"funcaptcha": "^1.1.5",
"ms": "^2.1.3",
"noblox.js": "^4.14.1",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/ms": "^0.7.31"
}
}