Command-fix/package.json

47 lines
1.3 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": ">=20.0.0"
},
2016-12-07 22:52:37 -05:00
"dependencies": {
"checkenv": "^1.2.2",
2023-08-23 12:45:26 -04:00
"discord.js": "^14.13.0",
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",
2021-01-18 23:34:58 -05:00
"string-similarity": "^4.0.4",
2023-09-04 01:18:36 -04:00
"typescript": "^5.2.2",
"winston": "^3.10.0"
2017-09-29 19:38:00 -04:00
},
"devDependencies": {
2023-08-23 12:45:26 -04:00
"@tsconfig/node20": "^20.1.2",
2020-05-02 01:35:33 -04:00
"@types/ip": "^1.1.0",
2023-09-19 15:51:03 -04:00
"@types/node": "^20.6.2",
2020-11-29 22:21:56 -05:00
"@types/string-similarity": "^4.0.0",
2023-06-10 23:14:18 -04:00
"@types/ws": "^8.5.5",
2023-09-19 15:51:03 -04:00
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"esbuild": "^0.19.3",
"eslint": "^8.49.0",
2023-05-29 16:21:52 -04:00
"eslint-config-standard": "^17.1.0",
2023-08-23 12:45:26 -04:00
"eslint-plugin-import": "^2.28.1",
2023-09-19 15:51:03 -04:00
"eslint-plugin-n": "^16.1.0",
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=node20 --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
}
}