Command-fix/package.json

49 lines
1.4 KiB
JSON
Raw Normal View History

2016-12-07 22:52:37 -05:00
{
"name": "citra-discord-bot",
2020-05-02 01:35:33 -04:00
"version": "2.0.0",
2016-12-07 22:52:37 -05:00
"description": "Citra bot for Discord",
"author": "chris062689 <chris062689@gmail.com>",
"private": true,
"subdomain": "citra-emu",
"analyze": true,
"license": "GPL-2.0+",
"engines": {
"node": ">=18.0.0"
},
2016-12-07 22:52:37 -05:00
"dependencies": {
"checkenv": "^1.2.2",
"discord.js": "^14.7.1",
2022-06-17 02:02:49 -04:00
"ip": "^1.1.8",
"logdna": "^3.5.3",
2021-09-27 18:24:25 -04:00
"logdna-winston": "^4.0.1",
"node-fetch": "^3",
2021-01-18 23:34:58 -05:00
"string-similarity": "^4.0.4",
2023-02-09 00:36:35 -05:00
"typescript": "^4.9.5",
2022-09-13 23:02:56 -04:00
"winston": "^3.8.2"
2017-09-29 19:38:00 -04:00
},
"devDependencies": {
2022-12-31 04:05:32 -05:00
"@tsconfig/node18": "^1.0.1",
2020-05-02 01:35:33 -04:00
"@types/ip": "^1.1.0",
2023-02-25 15:43:38 -05:00
"@types/node": "^18.14.1",
"@types/node-fetch": "^2",
2020-11-29 22:21:56 -05:00
"@types/string-similarity": "^4.0.0",
2022-12-31 04:05:32 -05:00
"@types/ws": "^8.5.4",
2023-02-25 15:43:38 -05:00
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"esbuild": "^0.17.10",
2023-02-16 18:28:06 -05:00
"eslint": "^8.34.0",
2022-06-17 02:02:49 -04:00
"eslint-config-standard": "^17.0.0",
2023-01-22 19:13:37 -05:00
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
2022-10-30 02:10:11 -04:00
"eslint-plugin-promise": "^6.1.1",
2022-09-13 23:02:56 -04:00
"ts-node": "^10.9.1"
2020-05-02 01:35:33 -04:00
},
"scripts": {
2022-09-14 04:30:27 -04:00
"postinstall": "node generateExports.js",
"build": "yarn run esbuild --bundle src/server.ts --platform=node --target=node18 --outdir=dist/ --minify-whitespace",
2022-09-14 04:30:27 -04:00
"check": "yarn run tsc --noEmit",
"bundle": "./bundle.sh",
2020-05-02 01:35:33 -04:00
"serve": "yarn run ts-node ./src/server.ts"
2016-12-07 22:52:37 -05:00
}
}