Command-fix/package.json

47 lines
1.3 KiB
JSON
Raw Normal View History

2016-12-08 03:52:37 +00:00
{
"name": "citra-discord-bot",
2020-05-02 05:35:33 +00:00
"version": "2.0.0",
2016-12-08 03:52:37 +00: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-08 03:52:37 +00:00
"dependencies": {
"checkenv": "^1.2.2",
2023-08-23 16:45:26 +00:00
"discord.js": "^14.13.0",
2022-06-17 06:02:49 +00:00
"ip": "^1.1.8",
"logdna": "^3.5.3",
2021-09-27 22:24:25 +00:00
"logdna-winston": "^4.0.1",
2021-01-19 04:34:58 +00:00
"string-similarity": "^4.0.4",
2023-09-04 05:18:36 +00:00
"typescript": "^5.2.2",
"winston": "^3.10.0"
2017-09-29 23:38:00 +00:00
},
"devDependencies": {
2023-08-23 16:45:26 +00:00
"@tsconfig/node20": "^20.1.2",
2020-05-02 05:35:33 +00:00
"@types/ip": "^1.1.0",
2023-09-04 05:18:36 +00:00
"@types/node": "^20.5.9",
2020-11-30 03:21:56 +00:00
"@types/string-similarity": "^4.0.0",
2023-06-11 03:14:18 +00:00
"@types/ws": "^8.5.5",
2023-09-04 05:18:36 +00:00
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
2023-08-23 16:45:26 +00:00
"esbuild": "^0.19.2",
2023-09-04 05:18:36 +00:00
"eslint": "^8.48.0",
2023-05-29 20:21:52 +00:00
"eslint-config-standard": "^17.1.0",
2023-08-23 16:45:26 +00:00
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
2022-10-30 06:10:11 +00:00
"eslint-plugin-promise": "^6.1.1",
2022-09-14 03:02:56 +00:00
"ts-node": "^10.9.1"
2020-05-02 05:35:33 +00:00
},
"scripts": {
2022-09-14 08:30:27 +00:00
"postinstall": "node generateExports.js",
"build": "yarn run esbuild --bundle src/server.ts --platform=node --target=node20 --outdir=dist/ --minify-whitespace",
2022-09-14 08:30:27 +00:00
"check": "yarn run tsc --noEmit",
"bundle": "./bundle.sh",
2020-05-02 05:35:33 +00:00
"serve": "yarn run ts-node ./src/server.ts"
2016-12-08 03:52:37 +00:00
}
}