blob: 6457877eb86646d70a96f33b122a721c501b7bc8 [file] [log] [blame]
Skyler Turner66ac7942022-02-24 01:59:22 +00001{
Skyler Grey4ec845c2022-08-06 10:21:50 +01002 "dependencies": {
Skyler Grey4ec845c2022-08-06 10:21:50 +01003 "@hokify/agenda": "^6.2.12",
TheCodedProfd8ef1f32023-03-06 19:15:18 -05004 "@tensorflow/tfjs": "^4.0.0",
5 "@tensorflow/tfjs-node": "^4.2.0",
Skyler Greycf771402023-03-05 07:06:37 +00006 "@total-typescript/ts-reset": "^0.3.7",
Skyler Grey4ec845c2022-08-06 10:21:50 +01007 "@tsconfig/node18-strictest-esm": "^1.0.0",
Skyler Greycf771402023-03-05 07:06:37 +00008 "@types/node": "^18.14.6",
Skyler Grey4ec845c2022-08-06 10:21:50 +01009 "@ungap/structured-clone": "^1.0.1",
10 "agenda": "^4.3.0",
11 "body-parser": "^1.20.0",
TheCodedProfd8ef1f32023-03-06 19:15:18 -050012 "canvas": "^2.11.0",
13 "clamscan": "^2.1.2",
TheCodedProfa112f612023-01-28 18:06:45 -050014 "discord.js": "^14.7.1",
Skyler Grey4ec845c2022-08-06 10:21:50 +010015 "eslint": "^8.21.0",
16 "express": "^4.18.1",
17 "fuse.js": "^6.6.2",
18 "humanize-duration": "^3.27.1",
19 "immutable": "^4.1.0",
TheCodedProff4facde2023-01-28 13:42:48 -050020 "lodash": "^4.17.21",
Skyler Grey4ec845c2022-08-06 10:21:50 +010021 "mongodb": "^4.7.0",
PineaFan752af462022-12-31 21:59:38 +000022 "node-fetch": "^3.3.0",
Skyler Grey4ec845c2022-08-06 10:21:50 +010023 "node-tesseract-ocr": "^2.2.1",
TheCodedProfd8ef1f32023-03-06 19:15:18 -050024 "nsfwjs": "2.4.2",
25 "seedrandom": "^3.0.5",
Skyler Grey4ec845c2022-08-06 10:21:50 +010026 "structured-clone": "^0.2.2",
TheCodedProf9c51a7e2023-02-27 17:11:13 -050027 "systeminformation": "^5.17.3"
Skyler Greycf771402023-03-05 07:06:37 +000028 },
Skyler Grey4ec845c2022-08-06 10:21:50 +010029 "name": "nucleus",
30 "version": "0.0.1",
31 "description": "Nucleus: The core of your server",
32 "main": "dist/index.js",
33 "scripts": {
34 "build": "tsc",
Skyler Grey5c4bacc2022-08-06 17:50:14 +010035 "start": "node --experimental-json-modules --enable-source-maps dist/index.js",
Skyler Greyf21323a2022-08-13 23:58:22 +010036 "dev": "rm -rf dist && eslint src --fix && tsc && node --experimental-json-modules --enable-source-maps dist/index.js",
PineaFan64486c42022-12-28 09:21:04 +000037 "force-dev": "clear; rm -rf dist; tsc-suppress && node --experimental-json-modules --enable-source-maps dist/index.js",
Skyler Greyf21323a2022-08-13 23:58:22 +010038 "lint": "echo 'Style checking...'; prettier --check .; echo 'Linting...'; eslint src; echo 'To auto-fix everything possible, please run `yarn lint-fix`'; true",
39 "lint-fix": "echo 'Fixing eslint issues...'; eslint src --fix; echo 'Reformatting...'; prettier --write --loglevel warn --cache .; true",
40 "lint-list": "echo 'Style checking...'; prettier --check .; echo 'Linting...'; eslint src; echo 'To view errors in more detail, please run `yarn lint`'; true",
Skyler Greyda16adf2023-03-05 10:22:12 +000041 "lint-ci": "echo 'Style checking...' && prettier --check . && echo 'Linting...' && eslint src",
TheCodedProf52679812023-01-17 21:38:02 -050042 "setup": "node Installer.js",
TheCodedProfd8ef1f32023-03-06 19:15:18 -050043 "win-force-build": "clear | rm -r dist | tsc-suppress",
44 "audit-fix": "yarn-audit-fix"
Skyler Grey4ec845c2022-08-06 10:21:50 +010045 },
46 "repository": {
47 "type": "git",
48 "url": "git+ssh://git@github.com/ClicksMinutePer/Nucleus.git"
49 },
50 "author": "Clicks",
51 "contributors": [
52 "Minion3665",
53 "PineappleFan"
54 ],
55 "license": "SEE LICENSE IN LICENSE",
56 "bugs": {
57 "url": "https://github.com/ClicksMinutePer/Nucleus/issues"
58 },
59 "homepage": "https://github.com/ClicksMinutePer/Nucleus#readme",
60 "private": false,
61 "type": "module",
62 "devDependencies": {
TheCodedProfd8ef1f32023-03-06 19:15:18 -050063 "@types/clamscan": "^2.0.4",
TheCodedProfa112f612023-01-28 18:06:45 -050064 "@types/lodash": "^4.14.191",
Skyler Grey4ec845c2022-08-06 10:21:50 +010065 "@typescript-eslint/eslint-plugin": "^5.32.0",
66 "@typescript-eslint/parser": "^5.32.0",
67 "eslint-config-prettier": "^8.5.0",
Skyler Grey5c4bacc2022-08-06 17:50:14 +010068 "prettier": "^2.7.1",
Skyler Greyf21323a2022-08-13 23:58:22 +010069 "prettier-eslint": "^15.0.1",
TheCodedProf9c51a7e2023-02-27 17:11:13 -050070 "tsc-suppress": "^1.0.7",
TheCodedProfd8ef1f32023-03-06 19:15:18 -050071 "typescript": "^4.9.4",
72 "yarn-audit-fix": "^9.3.9"
Skyler Grey4ec845c2022-08-06 10:21:50 +010073 }
Skyler Turner66ac7942022-02-24 01:59:22 +000074}