SillyTavern/package.json

85 lines
2.3 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",
2023-08-17 14:20:02 +02:00
"@dqbd/tiktoken": "^1.0.2",
2023-07-20 19:32:15 +02:00
"command-exists": "^1.2.9",
"compression": "^1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"csrf-csrf": "^2.2.3",
"device-detector-js": "^3.0.3",
"express": "^4.18.2",
"google-translate-api-browser": "^3.0.1",
2023-10-06 13:39:03 +02:00
"bing-translate-api": "^2.9.1",
2023-07-20 19:32:15 +02:00
"gpt3-tokenizer": "^1.1.5",
"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
"json5": "^2.2.3",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"multer": "^1.4.5-lts.1",
"node-fetch": "^2.6.11",
"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",
"response-time": "^2.3.2",
"sanitize-filename": "^1.6.3",
2023-09-11 03:47:14 +02:00
"sillytavern-transformers": "^2.7.3",
2023-07-20 19:32:15 +02:00
"simple-git": "^3.19.1",
2023-09-07 20:53:47 +02:00
"vectra": "^0.2.2",
2023-08-17 14:20:02 +02:00
"write-file-atomic": "^5.0.1",
2023-07-20 19:32:15 +02:00
"ws": "^8.13.0",
"yargs": "^17.7.1",
"yauzl": "^2.10.0"
},
"overrides": {
"parse-bmfont-xml": {
"xml2js": "^0.5.0"
}
},
"name": "sillytavern",
2023-07-21 16:42:15 +02:00
"type": "commonjs",
2023-07-20 19:32:15 +02:00
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/SillyTavern/SillyTavern.git"
},
"version": "1.10.6",
2023-07-20 19:32:15 +02:00
"scripts": {
"start": "node server.js",
2023-08-06 15:42:15 +02:00
"start-multi": "node server.js --disableCsrf",
"pkg": "pkg --compress Gzip --no-bytecode --public .",
"postinstall": "node post-install.js"
2023-07-20 19:32:15 +02:00
},
"bin": {
"sillytavern": "./server.js"
},
"rules": {
"no-path-concat": "off",
"no-var": "off"
},
"main": "server.js",
"pkg": {
"targets": [
"node18-linux-x64",
"node18-macos-x64",
"node18-windows-x64"
],
"assets": [
"node_modules/**/*"
],
"outputPath": "dist",
"scripts": [
"server.js"
]
},
"devDependencies": {
2023-09-17 13:27:41 +02:00
"jquery": "^3.6.4",
2023-07-20 19:32:15 +02:00
"pkg": "^5.8.1",
2023-08-22 13:30:49 +02:00
"pkg-fetch": "^3.5.2"
2023-07-20 19:32:15 +02:00
}
}