botserver/package.json

354 lines
9.4 KiB
JSON
Raw Normal View History

2018-04-21 02:59:30 -03:00
{
"name": "botserver",
2025-09-21 16:49:03 -03:00
"version": "5.1.0",
"description": "General Bot Community Edition open-core server.",
"main": "./boot.mjs",
2024-10-02 10:12:03 -03:00
"type": "module",
2018-11-12 13:53:21 -02:00
"bugs": "https://github.com/pragmatismo-io/BotServer/issues",
"homepage": "https://github.com/pragmatismo-io/BotServer/#readme",
"contributors": [
"Rodrigo Rodriguez <me@rodrigorodriguez.com>",
"João Ferreira <joao.parana@gmail.com>",
"Jorge Ramos <jramos@pobox.com>",
"PH <ph.an@outlook.com>",
2023-03-02 17:46:45 -03:00
"Dário Vieira <dario.junior3@gmail.com>",
"Alan Perdomo <alanperdomo@hotmail.com>"
],
2024-10-02 10:12:03 -03:00
"opencv4nodejs": {
"disableAutoBuild": "1"
},
2018-11-12 13:53:21 -02:00
"engines": {
2025-09-21 16:49:03 -03:00
"node": "=22.19.0"
2018-11-12 13:53:21 -02:00
},
2018-04-21 02:59:30 -03:00
"license": "AGPL-3.0",
"preferGlobal": true,
"private": false,
"bin": {
2024-09-06 15:30:03 -03:00
"gbot": "./boot.mjs"
},
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/GeneralBots/BotServer.git"
},
2018-04-21 02:59:30 -03:00
"scripts": {
"clean": "shx rm -rf node_modules/ dist/ docs/reference",
2022-12-14 08:23:39 -03:00
"tslint": "tslint --fix ./src/*.ts ./packages/**/*.ts -t verbose",
2022-06-08 13:24:43 -03:00
"build": "npm install && npm run build-server && npm run build-gbui",
"build-server": "tsc",
"build-gbui": "cd packages/default.gbui && echo SKIP_PREFLIGHT_CHECK=true >.env && npm install && npm run build",
"build-docs": "typedoc --options typedoc.json src/",
2024-02-17 17:27:53 -03:00
"test": "vitest",
"start": "NODE_NO_WARNINGS=1 node ./boot.mjs --loader ts-node/esm --require ./suppress-node-warnings.cjs",
"debug": "NODE_NO_WARNINGS=1 node ./boot.mjs --loader ts-node/esm --require ./suppress-node-warnings.cjs --inspect",
2025-09-21 16:49:03 -03:00
"watch:build": "tsc --watch"
2018-04-21 02:59:30 -03:00
},
2024-02-17 17:27:53 -03:00
"jest": {
"workerIdleMemoryLimit": "4096MB",
"transform": {
2024-05-25 19:11:01 -03:00
".+\\.tsx?$": "ts-jest"
2024-02-17 17:27:53 -03:00
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
2018-04-21 02:59:30 -03:00
"dependencies": {
"@azure/cognitiveservices-computervision": "8.2.0",
2024-05-25 19:11:01 -03:00
"@azure/ms-rest-js": "2.7.0",
"@azure/msal-node": "3.8.0",
2025-09-21 16:49:03 -03:00
"@azure/openai": "2.0.0",
2024-09-03 11:20:13 -03:00
"@azure/search-documents": "12.1.0",
2025-09-21 16:49:03 -03:00
"@azure/storage-blob": "12.28.0",
2025-09-24 15:20:32 -03:00
"@google-cloud/pubsub": "5.2.0",
"@google-cloud/translate": "9.2.0",
2024-05-25 19:11:01 -03:00
"@koa/cors": "5.0.0",
2025-09-21 16:49:03 -03:00
"@koa/router": "14.0.0",
"@langchain/anthropic": "0.3.28",
"@langchain/community": "0.3.56",
"@langchain/core": "0.3.77",
"@langchain/openai": "0.6.13",
2024-05-25 19:11:01 -03:00
"@microsoft/microsoft-graph-client": "3.0.7",
2025-09-21 16:49:03 -03:00
"@push-rpc/core": "1.9.3",
"@push-rpc/http": "1.9.3",
"@push-rpc/openapi": "1.9.3",
"@push-rpc/websocket": "1.9.3",
"@sequelize/core": "7.0.0-alpha.46",
"@sequelize/postgres": "7.0.0-alpha.46",
"@types/validator": "13.15.3",
2024-09-03 11:20:13 -03:00
"adm-zip": "0.5.16",
2025-09-21 16:49:03 -03:00
"alasql": "4.6.6",
"any-shell-escape": "0.1.1",
2023-02-24 13:31:40 -03:00
"arraybuffer-to-buffer": "0.0.7",
2024-05-25 19:11:01 -03:00
"async-mutex": "0.5.0",
"async-promises": "0.2.3",
"async-retry": "1.3.3",
2022-08-06 19:37:58 -03:00
"basic-auth": "2.0.1",
2025-09-21 16:49:03 -03:00
"bcrypt": "6.0.0",
"billboard.js": "3.17.0",
"bluebird": "3.7.2",
2025-09-21 16:49:03 -03:00
"body-parser": "2.2.0",
"botbuilder": "4.23.3",
"botbuilder-ai": "4.23.3",
"botbuilder-dialogs": "4.23.3",
"botframework-connector": "4.23.3",
2025-09-27 20:35:31 -03:00
"botlib-legacy": "5.3.0",
2024-05-25 19:11:01 -03:00
"cd": "0.3.3",
"chalk-animation": "2.0.3",
2025-09-21 16:49:03 -03:00
"chrome-remote-interface": "0.33.3",
2024-05-25 19:11:01 -03:00
"cli-progress": "3.12.0",
"cli-spinner": "0.2.10",
2025-09-21 16:49:03 -03:00
"core-js": "3.45.1",
2024-12-21 20:23:44 -03:00
"cors": "2.8.5",
2024-08-29 22:10:52 -03:00
"csv-database": "0.9.2",
2025-09-21 16:49:03 -03:00
"data-forge": "1.10.4",
"date-diff": "1.0.2",
2025-09-24 15:20:32 -03:00
"docximager": "0.0.4",
"docxtemplater": "3.66.3",
"dotenv-extended": "2.9.0",
2025-09-24 15:20:32 -03:00
"exceljs": "4.4.0",
"express": "^5.1.0",
"express-remove-route": "1.0.0",
"facebook-nodejs-business-sdk": "23.0.2",
2024-05-25 19:11:01 -03:00
"ffmpeg-static": "5.2.0",
2025-09-24 15:20:32 -03:00
"final-stream": "2.0.4",
2025-09-21 16:49:03 -03:00
"formidable": "3.5.4",
"glob": "11.0.3",
"google-libphonenumber": "3.2.43",
"googleapis": "160.0.0",
2024-05-25 19:11:01 -03:00
"hnswlib-node": "3.0.0",
2025-09-21 16:49:03 -03:00
"html-to-md": "0.8.8",
"http-proxy": "1.18.1",
2025-09-24 15:20:32 -03:00
"ibm-watson": "11.0.0",
2025-09-21 16:49:03 -03:00
"icojs": "0.19.5",
"iso-639-1": "3.1.5",
2024-08-19 16:12:23 -03:00
"isomorphic-fetch": "3.0.0",
"jimp": "1.6.0",
2023-12-12 19:53:05 -03:00
"js-md5": "0.8.3",
2025-09-21 16:49:03 -03:00
"json-schema-to-zod": "2.6.1",
"jsqr": "1.4.0",
"just-indent": "0.0.1",
"keyv": "5.5.3",
2025-09-21 16:49:03 -03:00
"koa": "3.0.1",
"koa-body": "6.0.1",
2025-09-21 16:49:03 -03:00
"koa-ratelimit": "6.0.0",
"langchain": "0.3.34",
2025-09-21 16:49:03 -03:00
"language-tags": "2.1.0",
"line-replace": "2.0.1",
2025-09-21 16:49:03 -03:00
"livekit-server-sdk": "2.13.3",
"lodash": "4.17.21",
2025-09-21 16:49:03 -03:00
"luxon": "3.7.2",
"mammoth": "1.11.0",
2025-09-21 16:49:03 -03:00
"mariadb": "3.4.5",
2025-09-24 15:20:32 -03:00
"marked": "16.3.0",
2025-09-21 16:49:03 -03:00
"mime-types": "3.0.1",
"minio": "8.0.6",
2024-05-25 19:11:01 -03:00
"moment": "2.30.1",
2025-09-21 16:49:03 -03:00
"mysql": "2.18.1",
"node-cron": "4.2.1",
2025-09-24 15:20:32 -03:00
"node-gyp": "^11.4.2",
2025-09-21 16:49:03 -03:00
"node-html-parser": "7.0.1",
2025-09-24 15:20:32 -03:00
"node-nlp": "4.27.0",
2025-09-21 16:49:03 -03:00
"nodemailer": "7.0.6",
"nodemon": "3.1.10",
"npm": "11.6.1",
2025-09-24 15:20:32 -03:00
"office-text-extractor": "3.0.3",
2025-09-21 16:49:03 -03:00
"open": "10.2.0",
2025-09-24 15:20:32 -03:00
"open-docxtemplater-image-module": "1.0.3",
"openai": "5.23.1",
"pdf-extraction": "1.0.2",
"pdf-parse": "1.1.1",
"pdf-to-png-converter": "3.10.0",
2025-09-21 16:49:03 -03:00
"pdfjs-dist": "5.4.149",
"pg": "8.16.3",
"phone": "3.1.67",
"pizzip": "3.2.0",
"pptxtemplater": "1.0.5",
2024-05-25 19:11:01 -03:00
"prism-media": "1.3.5",
"public-ip": "8.0.0",
2024-05-25 19:11:01 -03:00
"punycode": "2.3.1",
"puppeteer": "24.22.3",
"puppeteer-extra": "3.3.6",
2025-09-24 15:20:32 -03:00
"puppeteer-extra-plugin-stealth": "^2.11.2",
"qr-scanner": "1.4.2",
2024-09-03 11:20:13 -03:00
"qrcode": "1.5.4",
2025-09-21 16:49:03 -03:00
"qrcode-reader": "1.0.4",
"qrcode-terminal": "0.12.0",
2020-04-28 20:54:04 -03:00
"readline": "1.3.0",
2024-05-25 19:11:01 -03:00
"reflect-metadata": "0.2.2",
2024-09-03 11:20:13 -03:00
"rimraf": "6.0.1",
2020-07-12 10:13:54 -03:00
"safe-buffer": "5.2.1",
2024-05-25 19:11:01 -03:00
"scanf": "1.2.0",
2025-09-21 16:49:03 -03:00
"sequelize": "6.37.7",
"sequelize-cli": "6.6.3",
2024-09-03 11:20:13 -03:00
"sequelize-typescript": "2.1.6",
2025-09-21 16:49:03 -03:00
"simple-git": "3.28.0",
"speakingurl": "14.0.1",
"strict-password-generator": "1.1.2",
2025-09-21 16:49:03 -03:00
"stripe": "18.5.0",
"super-strong-password-generator": "2.0.2",
"super-strong-password-generator-es": "2.0.2",
"swagger-client": "3.35.7",
2025-09-21 16:49:03 -03:00
"swagger-ui-dist": "5.29.0",
"tabulator-tables": "6.3.1",
2024-09-03 11:20:13 -03:00
"tedious": "18.6.1",
"twilio": "5.10.1",
2025-09-21 16:49:03 -03:00
"twitter-api-v2": "1.27.0",
"typeorm": "0.3.27",
2025-09-21 16:49:03 -03:00
"typescript": "5.9.2",
2025-09-24 15:20:32 -03:00
"url-join": "5.0.0",
"vhost": "3.0.2",
"walk-promise": "0.2.0",
"washyourmouthoutwithsoap": "1.0.2",
2024-08-19 16:12:23 -03:00
"webdav-server": "2.6.2",
2025-09-24 15:20:32 -03:00
"webp-converter": "2.3.3",
"whatsapp-cloud-api": "0.3.1",
2025-09-24 15:20:32 -03:00
"whatsapp-web.js": "1.34.1",
2025-09-21 16:49:03 -03:00
"ws": "8.18.3",
"yaml": "2.8.1",
2024-05-25 19:11:01 -03:00
"yarn": "1.22.22",
2025-09-21 16:49:03 -03:00
"zod-to-json-schema": "3.24.6"
2018-11-11 10:50:58 -02:00
},
"devDependencies": {
2025-09-21 16:49:03 -03:00
"@types/lodash": "4.17.20",
"@types/node": "24.5.2",
2024-05-25 19:11:01 -03:00
"@types/qrcode": "1.5.5",
"@typescript-eslint/eslint-plugin": "8.44.1",
"@typescript-eslint/parser": "8.44.1",
"tsx": "4.20.6",
2025-09-21 16:49:03 -03:00
"vitest": "3.2.4"
},
"eslintConfig": {
"env": {
"node": true,
"es6": true,
"mocha": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2017
},
"rules": {
"indent": "off",
"linebreak-style": [
"warn",
"unix"
],
"no-unused-vars": [
"warn"
],
"no-undef": [
"warn"
],
"no-console": [
"warn"
],
"no-case-declarations": [
"warn"
],
"no-extra-semi": [
"warn"
],
"no-unreachable": [
"warn"
],
"no-redeclare": [
"warn"
],
"no-useless-escape": [
"warn"
],
"no-constant-condition": [
"warn"
]
}
},
"release": {
2018-11-17 09:33:39 -02:00
"tagFormat": "${version}",
2018-11-12 17:02:11 -02:00
"debug": true,
chore(release): 2.1.1 [skip ci] ## [2.1.1](https://github.com/GeneralBots/BotServer/compare/2.1.0...2.1.1) (2023-01-01) ### Bug Fixes * **admin.gbapp:** Fixing token generation issues. ([8fb35c2](https://github.com/GeneralBots/BotServer/commit/8fb35c2c2d4798b819e38bdf7c12ec5fe59d7f64)) * **admin.gbapp:** Fixing token generation issues. ([2a848f4](https://github.com/GeneralBots/BotServer/commit/2a848f4ea6b7fb3359bd0f9db9a9bdf167544cab)) * **admin.gbapp:** Fixing token generation issues. ([3de3bd6](https://github.com/GeneralBots/BotServer/commit/3de3bd6c01aaa80e38b57cdef63f80bf67fb785d)) * **all:** Finishing renaming to main branch. ([16d2101](https://github.com/GeneralBots/BotServer/commit/16d21019a081151db21e4726cb5c2eac3326336d)) * **all:** Finishing renaming to main branch. ([cac92cc](https://github.com/GeneralBots/BotServer/commit/cac92cca22a03b67326993f42e528900fa55a263)) * **all:** Finishing renaming to main branch. ([bff8bcf](https://github.com/GeneralBots/BotServer/commit/bff8bcf7e5fef6499f180d1a1bc9e57f131d6299)) * **all:** Finishing renaming to main branch. ([07f173e](https://github.com/GeneralBots/BotServer/commit/07f173ec7302a77945abc0bcd772af5ccd6c0761)) * **all:** Fixing bugs of 3.0 ([39eff93](https://github.com/GeneralBots/BotServer/commit/39eff935283883dcbdfcb5a38c599bd3d7153cd5)) * **all:** TODO items removed or moved to ALM. ([7348c54](https://github.com/GeneralBots/BotServer/commit/7348c5489433eb82a44af12b4a8f4e76f01998b4)) * **basic.gblib:** Renaming branch to main. ([c6d9662](https://github.com/GeneralBots/BotServer/commit/c6d96621455039a822f19746a1d8664c79e7ca28)) * **basic.gblib:** Renaming branch to main. ([203416c](https://github.com/GeneralBots/BotServer/commit/203416c47737c1a4cfb5e5110b4878a6534ecdcf)) * **basic.gblib:** TODO removal. ([2b08965](https://github.com/GeneralBots/BotServer/commit/2b0896521e537e22858d9d43b019bc95079af6b5)) * **basic.gblib:** TODO removal. ([c0133a8](https://github.com/GeneralBots/BotServer/commit/c0133a89606336824b93e453b60fce2630815c67)) * **basic.gblib:** TODO removal. ([9ad1d56](https://github.com/GeneralBots/BotServer/commit/9ad1d5693e954e88675c7e0605b6f64f2900f9d7))
2023-01-01 20:18:03 +00:00
"branches": [
"main"
],
2018-11-18 16:26:11 -02:00
"verifyConditions": [
"@semantic-release/github"
2018-11-18 17:03:24 -02:00
],
2018-11-18 18:46:23 -02:00
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog"
],
2018-11-18 17:03:24 -02:00
"prepare": [
2018-11-12 16:01:16 -02:00
"@semantic-release/npm",
2018-11-18 16:26:11 -02:00
{
2018-11-18 17:03:24 -02:00
"path": "@semantic-release/exec",
"cmd": "git status"
},
2018-11-18 18:46:23 -02:00
"@semantic-release/changelog",
2018-11-18 17:03:24 -02:00
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"CHANGELOG.md"
2018-11-18 17:03:24 -02:00
]
2018-11-18 16:26:11 -02:00
}
2018-11-18 17:03:24 -02:00
],
"publish": [
"@semantic-release/npm",
2018-11-12 16:01:16 -02:00
"@semantic-release/github"
],
"analyzeCommits": "simple-commit-message"
2018-11-18 17:03:24 -02:00
},
"config": {
2018-11-12 12:40:35 -02:00
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"pre-git": {
"commit-msg": "simple",
"pre-commit": [],
"pre-push": [],
"post-commit": [],
"post-checkout": [],
"post-merge": []
}
2025-09-21 16:49:03 -03:00
},
"overrides": {
"lodash.trimend": "npm:lodash@4.17.21",
"lodash.isequal": "npm:lodash@4.17.21",
2025-09-24 15:20:32 -03:00
"node-domexception": "npm:whatwg-url@11.0.0",
2025-09-21 16:49:03 -03:00
"csv-database": {
"fast-csv": "4.3.6"
},
"sequelize-typescript": {
"glob": "~9.0.0"
},
"tough-cookie": "4.1.3",
"phin": "3.7.1",
2025-09-24 15:20:32 -03:00
"xmldom": "npm:@xmldom/xmldom@0.8.10",
2025-09-21 16:49:03 -03:00
"form-data": "2.5.5",
"uuid": "9.0.1",
"har-validator": "5.1.5",
2025-09-24 15:20:32 -03:00
"yaeti": "npm:events@3.3.0",
"text-encoding": "npm:text-encoder-lite@1.0.1",
2025-09-21 16:49:03 -03:00
"docximager": {
2025-09-24 15:20:32 -03:00
"xml2js": "0.5.0"
2025-09-21 16:49:03 -03:00
},
"tar-fs": "3.1.0",
"ws": "8.18.3",
2025-09-24 15:20:32 -03:00
"xml2js": "0.6.2",
"inflight": "npm:lru-cache@10.2.0",
2025-09-21 16:49:03 -03:00
"rimraf": "6.0.1",
"glob": "11.0.3",
2025-09-24 15:20:32 -03:00
"fstream": "npm:fs-extra@11.0.0",
"openai": "5.23.1",
"puppeteer": "24.22.3",
2025-09-24 15:20:32 -03:00
"fluent-ffmpeg": "npm:ffmpeg-static@5.0.0",
2025-09-21 16:49:03 -03:00
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz",
"@nlpjs/xtables": {
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz"
}
2018-04-21 02:59:30 -03:00
}
}