SillyTavern/package.json

113 lines
3.4 KiB
JSON
Raw Normal View History

2023-07-20 19:32:15 +02:00
{
"dependencies": {
2023-08-17 14:20:02 +02:00
"@agnai/sentencepiece-js": "^1.1.1",
"@agnai/web-tokenizers": "^0.1.3",
2024-05-30 20:09:53 +02:00
"@zeldafan0225/ai_horde": "^5.1.0",
2024-04-09 21:43:47 +02:00
"archiver": "^7.0.1",
"bing-translate-api": "^2.9.1",
"body-parser": "^1.20.2",
2023-07-20 19:32:15 +02:00
"command-exists": "^1.2.9",
"compression": "^1",
"cookie-parser": "^1.4.6",
2024-04-07 18:12:22 +02:00
"cookie-session": "^2.1.0",
2023-07-20 19:32:15 +02:00
"cors": "^2.8.5",
"csrf-csrf": "^2.2.3",
2024-09-21 18:09:35 +02:00
"express": "^4.21.0",
"form-data": "^4.0.0",
2024-10-12 09:47:05 +02:00
"google-translate-api-x": "^10.7.1",
"helmet": "^7.1.0",
2024-10-10 21:37:22 +02:00
"html-entities": "^2.5.2",
"iconv-lite": "^0.6.3",
2023-07-20 19:32:15 +02:00
"ip-matching": "^2.1.2",
"ipaddr.js": "^2.0.1",
2023-09-11 03:47:14 +02:00
"jimp": "^0.22.10",
2023-07-20 19:32:15 +02:00
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"multer": "^1.4.5-lts.1",
2024-10-10 21:37:22 +02:00
"node-fetch": "^3.3.2",
"node-persist": "^4.0.1",
"open": "^8.4.2",
2023-07-20 19:32:15 +02:00
"png-chunk-text": "^1.0.0",
"png-chunks-encode": "^1.0.0",
"png-chunks-extract": "^1.0.0",
"proxy-agent": "^6.4.0",
"rate-limiter-flexible": "^5.0.0",
2023-07-20 19:32:15 +02:00
"response-time": "^2.3.2",
"sanitize-filename": "^1.6.3",
2024-08-16 14:03:43 +02:00
"sillytavern-transformers": "2.14.6",
2023-07-20 19:32:15 +02:00
"simple-git": "^3.19.1",
2024-09-13 18:44:12 +02:00
"tiktoken": "^1.0.16",
2023-09-07 20:53:47 +02:00
"vectra": "^0.2.2",
"wavefile": "^11.0.0",
2023-08-17 14:20:02 +02:00
"write-file-atomic": "^5.0.1",
2024-06-19 12:25:29 +02:00
"ws": "^8.17.1",
2023-11-25 22:45:33 +01:00
"yaml": "^2.3.4",
2023-07-20 19:32:15 +02:00
"yargs": "^17.7.1",
"yauzl": "^2.10.0"
},
2024-05-20 13:27:51 +02:00
"engines": {
2024-05-30 20:09:53 +02:00
"node": ">= 18"
2024-05-20 13:27:51 +02:00
},
2023-07-20 19:32:15 +02:00
"overrides": {
2023-11-10 22:54:44 +01:00
"vectra": {
"openai": "^4.17.0"
2024-01-09 00:53:26 +01:00
},
"axios": {
"follow-redirects": "^1.15.4"
2024-03-06 10:30:09 +01:00
},
2024-05-20 13:37:10 +02:00
"node-fetch": {
"whatwg-url": "^14.0.0"
2023-07-20 19:32:15 +02:00
}
},
"name": "sillytavern",
2024-10-10 21:37:22 +02:00
"type": "module",
2023-07-20 19:32:15 +02:00
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/SillyTavern/SillyTavern.git"
},
2024-09-24 19:22:18 +02:00
"version": "1.12.6",
2023-07-20 19:32:15 +02:00
"scripts": {
"start": "node server.js",
2024-05-05 23:49:00 +02:00
"start:no-csrf": "node server.js --disableCsrf",
"postinstall": "node post-install.js",
"lint": "eslint \"src/**/*.js\" \"public/**/*.js\" ./*.js",
2024-05-05 23:49:00 +02:00
"lint:fix": "eslint \"src/**/*.js\" \"public/**/*.js\" ./*.js --fix",
2024-05-13 20:22:01 +02:00
"plugins:update": "node plugins update",
"plugins:install": "node plugins install"
2023-07-20 19:32:15 +02:00
},
"bin": {
"sillytavern": "./server.js"
},
"rules": {
"no-path-concat": "off",
"no-var": "off"
},
"main": "server.js",
"devDependencies": {
2024-10-10 21:37:22 +02:00
"@types/archiver": "^6.0.2",
"@types/command-exists": "^1.2.3",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.7",
"@types/cookie-session": "^2.0.49",
"@types/cors": "^2.8.17",
2024-10-06 18:51:59 +02:00
"@types/dompurify": "^3.0.5",
"@types/express": "^4.17.21",
"@types/jquery": "^3.5.29",
2024-10-10 21:37:22 +02:00
"@types/lodash": "^4.17.10",
"@types/mime-types": "^2.1.4",
"@types/multer": "^1.4.12",
2024-10-12 10:36:26 +02:00
"@types/node": "^18.19.55",
2024-10-10 21:37:22 +02:00
"@types/node-persist": "^3.1.8",
"@types/png-chunk-text": "^1.0.3",
"@types/png-chunks-encode": "^1.0.2",
"@types/png-chunks-extract": "^1.0.2",
"@types/response-time": "^2.3.8",
2024-10-06 18:51:59 +02:00
"@types/toastr": "^2.1.43",
2024-10-10 21:37:22 +02:00
"@types/write-file-atomic": "^4.0.3",
"@types/yargs": "^17.0.33",
"@types/yauzl": "^2.10.3",
2024-10-06 18:51:59 +02:00
"eslint": "^8.57.0"
2023-07-20 19:32:15 +02:00
}
}