mirror of
https://github.com/citra-emu/discord-bot.git
synced 2024-12-22 20:35:35 +00:00
3c1019e817
* Significantly reduced deployment size * Bot starts up much more faster
60 lines
1.4 KiB
JSON
60 lines
1.4 KiB
JSON
{
|
|
"name": "citra-discord-bot",
|
|
"version": "2.0.0",
|
|
"description": "Citra bot for Discord",
|
|
"author": "chris062689 <chris062689@gmail.com>",
|
|
"preferGlobal": true,
|
|
"private": true,
|
|
"subdomain": "citra-emu",
|
|
"analyze": true,
|
|
"license": "GPL-2.0+",
|
|
"source": "src/server.ts",
|
|
"main": "dist/server.js",
|
|
"engines": {
|
|
"node": ">= 16"
|
|
},
|
|
"targets": {
|
|
"main": {
|
|
"includeNodeModules": {
|
|
"discord.js": false
|
|
},
|
|
"context": "node",
|
|
"optimize": true
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"checkenv": "^1.2.2",
|
|
"discord.js": "^13.2.0",
|
|
"ip": "^1.1.5",
|
|
"logdna": "^3.5.2",
|
|
"logdna-winston": "^4.0.1",
|
|
"node-fetch": "^3",
|
|
"string-similarity": "^4.0.4",
|
|
"winston": "^3.3.3"
|
|
},
|
|
"devDependencies": {
|
|
"@parcel/resolver-glob": "^2.0.0",
|
|
"@tsconfig/node14": "^1.0.1",
|
|
"@types/ip": "^1.1.0",
|
|
"@types/node": "^16.11.2",
|
|
"@types/node-fetch": "^3",
|
|
"@types/string-similarity": "^4.0.0",
|
|
"@types/ws": "^8.2.0",
|
|
"eslint": "^8.0.1",
|
|
"eslint-config-standard": "^16.0.3",
|
|
"eslint-plugin-import": "^2.25.2",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^5.1.1",
|
|
"eslint-plugin-standard": "^4.1.0",
|
|
"parcel": "^2.0.0",
|
|
"ts-node": "^10.3.1",
|
|
"typescript": "^4.4.4"
|
|
},
|
|
"scripts": {
|
|
"check": "yarn run tsc --noEmit",
|
|
"build": "yarn run tsc",
|
|
"dist": "./bundle.sh",
|
|
"serve": "yarn run ts-node ./src/server.ts"
|
|
}
|
|
}
|