blob: 4f9bec92ce9cd36a35d4b9455e95399dbbfb98a1 [file] [log] [blame]
Skyler Turner66ac7942022-02-24 01:59:22 +00001{
Skyler Grey4ec845c2022-08-06 10:21:50 +01002 "dependencies": {
TheCodedProf83311512023-06-11 13:54:50 -04003 "@clicks/nsfwjs": "^3.0.2",
TheCodedProf7b985d82023-06-08 16:40:41 -04004 "@hokify/agenda": "^6.3.0",
5 "@octokit/graphql": "^5.0.6",
6 "@tensorflow/tfjs": "^4.7.0",
7 "@tensorflow/tfjs-node": "^4.7.0",
8 "@total-typescript/ts-reset": "^0.4.2",
9 "@ungap/structured-clone": "^1.2.0",
10 "agenda": "^5.0.0",
11 "body-parser": "^1.20.2",
12 "canvas": "^2.11.2",
TheCodedProfd8ef1f32023-03-06 19:15:18 -050013 "clamscan": "^2.1.2",
TheCodedProf32302c92023-06-06 17:01:08 -040014 "diff": "^5.1.0",
TheCodedProf7b985d82023-06-08 16:40:41 -040015 "discord.js": "^14.11.0",
TheCodedProf83311512023-06-11 13:54:50 -040016 "dotenv": "^16.1.4",
TheCodedProf7b985d82023-06-08 16:40:41 -040017 "eslint": "^8.42.0",
18 "express": "^4.18.2",
Skyler Grey4ec845c2022-08-06 10:21:50 +010019 "fuse.js": "^6.6.2",
Skyler Grey0d885222023-03-08 21:46:37 +000020 "gm": "^1.25.0",
TheCodedProf7b985d82023-06-08 16:40:41 -040021 "humanize-duration": "^3.28.0",
22 "immutable": "^4.3.0",
TheCodedProff4facde2023-01-28 13:42:48 -050023 "lodash": "^4.17.21",
TheCodedProf7b985d82023-06-08 16:40:41 -040024 "mongodb": "^5.6.0",
25 "node-fetch": "^3.3.1",
Skyler Grey4ec845c2022-08-06 10:21:50 +010026 "node-tesseract-ocr": "^2.2.1",
TheCodedProf7b985d82023-06-08 16:40:41 -040027 "octokit": "^2.0.19",
TheCodedProfd8ef1f32023-03-06 19:15:18 -050028 "seedrandom": "^3.0.5",
Skyler Grey4ec845c2022-08-06 10:21:50 +010029 "structured-clone": "^0.2.2",
TheCodedProf7b985d82023-06-08 16:40:41 -040030 "systeminformation": "^5.18.2"
Skyler Grey25d2b3f2023-03-08 16:10:00 +000031 },
Skyler Grey4ec845c2022-08-06 10:21:50 +010032 "name": "nucleus",
TheCodedProf92670ca2023-04-22 21:46:34 -040033 "version": "1.1.0",
Skyler Grey4ec845c2022-08-06 10:21:50 +010034 "description": "Nucleus: The core of your server",
35 "main": "dist/index.js",
36 "scripts": {
TheCodedProf4a7c25d2023-06-07 17:09:45 -040037 "build": "tsc && pnpm copy-files",
Skyler Grey7a966df2023-03-09 12:53:57 +000038 "copy-files": "copyfiles -u 1 src/reflex/nsfwjs/example/nsfw_demo/public/model/**/* dist/",
TheCodedProf83311512023-06-11 13:54:50 -040039 "start": "node --experimental-json-modules --enable-source-maps -r dotenv/config dist/index.js",
TheCodedProf4a7c25d2023-06-07 17:09:45 -040040 "dev": "rm -rf dist && eslint src --fix && pnpm build && node --experimental-json-modules --enable-source-maps dist/index.js",
41 "force-dev": "clear; rm -rf dist; tsc-suppress && pnpm copy-files && node --experimental-json-modules --enable-source-maps dist/index.js",
42 "lint": "echo 'Style checking...'; prettier --check .; echo 'Linting...'; eslint src; echo 'To auto-fix everything possible, please run `pnpm lint-fix`'; true",
43 "lint-no-stylecheck": "echo 'Linting...'; eslint src; echo 'A full lint and style check is required for PRs to be accepted. Please run `pnpm lint` before committing'; true",
Skyler Greyf21323a2022-08-13 23:58:22 +010044 "lint-fix": "echo 'Fixing eslint issues...'; eslint src --fix; echo 'Reformatting...'; prettier --write --loglevel warn --cache .; true",
TheCodedProf4a7c25d2023-06-07 17:09:45 -040045 "lint-list": "echo 'Style checking...'; prettier --check .; echo 'Linting...'; eslint src; echo 'To view errors in more detail, please run `pnpm lint`'; true",
Skyler Greyda16adf2023-03-05 10:22:12 +000046 "lint-ci": "echo 'Style checking...' && prettier --check . && echo 'Linting...' && eslint src",
TheCodedProf4a7c25d2023-06-07 17:09:45 -040047 "setup": "npm i -g pnpm | pnpm | pnpm build | node Installer.js",
48 "win-force-build": "clear | rm -r dist | tsc-suppress | pnpm copy-files",
49 "audit-fix": "pnpm audit --fix",
50 "versions": "pnpm versions && pnpm list && node --version",
TheCodedProf5a6d3d12023-03-10 18:06:30 -050051 "win-lint-fix": "echo 'Fixing eslint issues...' | eslint src --fix | echo 'Reformatting...' | prettier --write --loglevel warn --cache . | true"
Skyler Grey4ec845c2022-08-06 10:21:50 +010052 },
53 "repository": {
54 "type": "git",
55 "url": "git+ssh://git@github.com/ClicksMinutePer/Nucleus.git"
56 },
57 "author": "Clicks",
58 "contributors": [
59 "Minion3665",
TheCodedProf4a7c25d2023-06-07 17:09:45 -040060 "PineaFan",
TheCodedProf7eb44e52023-04-22 21:49:14 -040061 "TheCodedProf"
Skyler Grey4ec845c2022-08-06 10:21:50 +010062 ],
TheCodedProf4a7c25d2023-06-07 17:09:45 -040063 "license": "AGPL-3.0",
Skyler Grey4ec845c2022-08-06 10:21:50 +010064 "bugs": {
65 "url": "https://github.com/ClicksMinutePer/Nucleus/issues"
66 },
67 "homepage": "https://github.com/ClicksMinutePer/Nucleus#readme",
68 "private": false,
69 "type": "module",
70 "devDependencies": {
TheCodedProfd8ef1f32023-03-06 19:15:18 -050071 "@types/clamscan": "^2.0.4",
TheCodedProf7b985d82023-06-08 16:40:41 -040072 "@types/diff": "^5.0.3",
73 "@types/gm": "^1.25.1",
74 "@types/lodash": "^4.14.195",
75 "@types/node": "^20.2.5",
76 "@typescript-eslint/eslint-plugin": "^5.59.9",
77 "@typescript-eslint/parser": "^5.59.9",
Skyler Grey7a966df2023-03-09 12:53:57 +000078 "copyfiles": "^2.4.1",
TheCodedProf7b985d82023-06-08 16:40:41 -040079 "eslint-config-prettier": "^8.8.0",
80 "prettier": "^2.8.8",
Skyler Greyf21323a2022-08-13 23:58:22 +010081 "prettier-eslint": "^15.0.1",
TheCodedProf9c51a7e2023-02-27 17:11:13 -050082 "tsc-suppress": "^1.0.7",
TheCodedProf7b985d82023-06-08 16:40:41 -040083 "typescript": "^5.1.3",
84 "yarn-audit-fix": "^9.3.10"
Skyler Grey4ec845c2022-08-06 10:21:50 +010085 }
Skyler Turner66ac7942022-02-24 01:59:22 +000086}