349 lines
9.8 KiB
JSON
349 lines
9.8 KiB
JSON
{
|
|
"name": "botserver",
|
|
"version": "5.0.0",
|
|
"description": "General Bot Community Edition open-core server.",
|
|
"main": "./boot.mjs",
|
|
"type":"module",
|
|
"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>",
|
|
"Dário Vieira <dario.junior3@gmail.com>",
|
|
"Alan Perdomo <alanperdomo@hotmail.com>"
|
|
],
|
|
"engines": {
|
|
"node": "=22.9.0"
|
|
},
|
|
"license": "AGPL-3.0",
|
|
"preferGlobal": true,
|
|
"private": false,
|
|
"bin": {
|
|
"gbot": "./boot.mjs"
|
|
},
|
|
"readme": "README.md",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/GeneralBots/BotServer.git"
|
|
},
|
|
"scripts": {
|
|
"clean": "shx rm -rf node_modules/ dist/ docs/reference",
|
|
"tslint": "tslint --fix ./src/*.ts ./packages/**/*.ts -t verbose",
|
|
"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/",
|
|
"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",
|
|
"reverse-proxy": "node_modules/.bin/ngrok http 4242",
|
|
"watch:build": "tsc --watch",
|
|
"posttypedoc": "shx cp .nojekyll docs/reference/.nojekyll",
|
|
"ban": "ban",
|
|
"issues": "git-issues",
|
|
"license": "license-checker --production --onlyunknown --csv",
|
|
"pretty": "prettier-standard 'src/*.ts' 'packages/**/*.ts'",
|
|
"secure": "nsp check",
|
|
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
|
|
"unused-deps": "dependency-check --unused --no-dev ./package.json",
|
|
"travis-deploy-once": "travis-deploy-once --pro",
|
|
"semantic-release": "semantic-release",
|
|
"commit": "git-cz"
|
|
},
|
|
"jest": {
|
|
"workerIdleMemoryLimit": "4096MB",
|
|
"transform": {
|
|
".+\\.tsx?$": "ts-jest"
|
|
},
|
|
"moduleFileExtensions": [
|
|
"ts",
|
|
"tsx",
|
|
"js",
|
|
"jsx",
|
|
"json"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@azure/arm-appservice": "15.0.0",
|
|
"@azure/arm-cognitiveservices": "7.5.0",
|
|
"@azure/arm-resources": "5.2.0",
|
|
"@azure/arm-search": "3.2.0",
|
|
"@azure/arm-sql": "10.0.0",
|
|
"@azure/arm-subscriptions": "5.1.0",
|
|
"@azure/cognitiveservices-computervision": "8.2.0",
|
|
"@azure/keyvault-keys": "4.8.0",
|
|
"@azure/ms-rest-js": "2.7.0",
|
|
"@azure/msal-node": "2.13.1",
|
|
"@azure/openai": "2.0.0-beta.1",
|
|
"@azure/search-documents": "12.1.0",
|
|
"@azure/storage-blob": "12.24.0",
|
|
"@google-cloud/pubsub": "4.7.0",
|
|
"@google-cloud/translate": "8.5.0",
|
|
"@hubspot/api-client": "11.2.0",
|
|
"@koa/cors": "5.0.0",
|
|
"@langchain/community": "0.2.31",
|
|
"@langchain/openai": "0.2.8",
|
|
"@microsoft/microsoft-graph-client": "3.0.7",
|
|
"@nlpjs/basic": "4.27.0",
|
|
"@nosferatu500/textract": "3.1.3",
|
|
"@push-rpc/core": "1.9.0",
|
|
"@push-rpc/http": "1.9.0",
|
|
"@push-rpc/openapi": "1.9.0",
|
|
"@push-rpc/websocket": "1.9.0",
|
|
"@semantic-release/changelog": "6.0.3",
|
|
"@semantic-release/exec": "6.0.3",
|
|
"@semantic-release/git": "10.0.1",
|
|
"@sendgrid/mail": "8.1.3",
|
|
"@sequelize/core": "7.0.0-alpha.37",
|
|
"@types/node": "22.5.2",
|
|
"@types/validator": "13.12.1",
|
|
"adm-zip": "0.5.16",
|
|
"alasql": "4.5.1",
|
|
"any-shell-escape": "0.1.1",
|
|
"arraybuffer-to-buffer": "0.0.7",
|
|
"async-mutex": "0.5.0",
|
|
"async-promises": "0.2.3",
|
|
"async-retry": "1.3.3",
|
|
"basic-auth": "2.0.1",
|
|
"billboard.js": "3.13.0",
|
|
"bluebird": "3.7.2",
|
|
"body-parser": "1.20.2",
|
|
"botbuilder": "4.23.0",
|
|
"botbuilder-adapter-facebook": "1.0.12",
|
|
"botbuilder-ai": "4.23.0",
|
|
"botbuilder-dialogs": "4.23.0",
|
|
"botframework-connector": "4.23.0",
|
|
"botlib": "5.0.0",
|
|
"c3-chart-maker": "0.2.8",
|
|
"cd": "0.3.3",
|
|
"chalk-animation": "2.0.3",
|
|
"chatgpt": "5.2.5",
|
|
"chrome-remote-interface": "0.33.2",
|
|
"cli-progress": "3.12.0",
|
|
"cli-spinner": "0.2.10",
|
|
"core-js": "3.38.1",
|
|
"csv-database": "0.9.2",
|
|
"data-forge": "1.10.2",
|
|
"date-diff": "1.0.2",
|
|
"docximager": "0.0.4",
|
|
"docxtemplater": "3.50.0",
|
|
"dotenv-extended": "2.9.0",
|
|
"electron": "32.0.1",
|
|
"exceljs": "4.4.0",
|
|
"express": "4.19.2",
|
|
"express-remove-route": "1.0.0",
|
|
"facebook-nodejs-business-sdk": "^20.0.2",
|
|
"ffmpeg-static": "5.2.0",
|
|
"get-image-colors": "4.0.1",
|
|
"google-libphonenumber": "3.2.38",
|
|
"googleapis": "143.0.0",
|
|
"hnswlib-node": "3.0.0",
|
|
"html-to-md": "0.8.6",
|
|
"http-proxy": "1.18.1",
|
|
"ibm-watson": "9.1.0",
|
|
"instagram-private-api": "1.46.1",
|
|
"iso-639-1": "3.1.3",
|
|
"isomorphic-fetch": "3.0.0",
|
|
"js-md5": "0.8.3",
|
|
"json-schema-to-zod": "2.4.0",
|
|
"just-indent": "0.0.1",
|
|
"keyv": "5.0.1",
|
|
"koa": "2.15.3",
|
|
"koa-body": "6.0.1",
|
|
"koa-ratelimit": "5.1.0",
|
|
"koa-router": "12.0.1",
|
|
"langchain": "0.2.17",
|
|
"language-tags": "1.0.9",
|
|
"line-replace": "2.0.1",
|
|
"lodash": "4.17.21",
|
|
"luxon": "3.5.0",
|
|
"mammoth": "1.8.0",
|
|
"mariadb": "3.3.1",
|
|
"mime-types": "2.1.35",
|
|
"moment": "2.30.1",
|
|
"ms-rest-azure": "3.0.2",
|
|
"mysql": "^2.18.1",
|
|
"nexmo": "2.9.1",
|
|
"ngrok": "5.0.0-beta.2",
|
|
"node-cron": "3.0.3",
|
|
"node-html-parser": "6.1.13",
|
|
"node-nlp": "4.27.0",
|
|
"node-tesseract-ocr": "2.2.1",
|
|
"nodemon": "^3.1.7",
|
|
"npm": "10.8.3",
|
|
"open": "10.1.0",
|
|
"open-docxtemplater-image-module": "1.0.3",
|
|
"openai": "4.57.0",
|
|
"pdf-extraction": "1.0.2",
|
|
"pdf-parse": "1.1.1",
|
|
"pdf-to-png-converter": "3.3.0",
|
|
"pdfjs-dist": "4.6.82",
|
|
"pdfkit": "0.15.0",
|
|
"phone": "3.1.50",
|
|
"pizzip": "3.1.7",
|
|
"pptxtemplater": "1.0.5",
|
|
"pragmatismo-io-framework": "1.1.1",
|
|
"prism-media": "1.3.5",
|
|
"public-ip": "7.0.1",
|
|
"punycode": "2.3.1",
|
|
"puppeteer": "23.2.2",
|
|
"puppeteer-extra": "3.3.6",
|
|
"puppeteer-extra-plugin-minmax": "1.1.2",
|
|
"puppeteer-extra-plugin-stealth": "2.11.2",
|
|
"qr-scanner": "1.4.2",
|
|
"qrcode": "1.5.4",
|
|
"qrcode-terminal": "0.12.0",
|
|
"readline": "1.3.0",
|
|
"reflect-metadata": "0.2.2",
|
|
"rimraf": "6.0.1",
|
|
"safe-buffer": "5.2.1",
|
|
"scanf": "1.2.0",
|
|
"sequelize": "6.37.3",
|
|
"sequelize-cli": "6.6.2",
|
|
"sequelize-typescript": "2.1.6",
|
|
"simple-git": "3.26.0",
|
|
"speakingurl": "14.0.1",
|
|
"sqlite3": "5.1.7",
|
|
"ssr-for-bots": "1.0.1-c",
|
|
"strict-password-generator": "1.1.2",
|
|
"swagger-client": "3.29.2",
|
|
"swagger-ui-dist": "5.17.14",
|
|
"tabulator-tables": "6.2.5",
|
|
"tedious": "18.6.1",
|
|
"textract": "2.5.0",
|
|
"twilio": "5.2.3",
|
|
"twitter-api-v2": "1.17.2",
|
|
"typeorm": "0.3.20",
|
|
"typescript": "5.5.4",
|
|
"url-join": "5.0.0",
|
|
"vhost": "3.0.2",
|
|
"vm2": "3.9.19",
|
|
"vm2-process": "2.1.5",
|
|
"walk-promise": "0.2.0",
|
|
"washyourmouthoutwithsoap": "1.0.2",
|
|
"webdav-server": "2.6.2",
|
|
"whatsapp-cloud-api": "0.3.1",
|
|
"whatsapp-web.js": "https://github.com/Julzk/whatsapp-web.js/tarball/jkr_hotfix_7",
|
|
"winston": "3.14.2",
|
|
"ws": "8.18.0",
|
|
"yaml": "2.5.0",
|
|
"yarn": "1.22.22",
|
|
"zod-to-json-schema": "3.23.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/qrcode": "1.5.5",
|
|
"@types/url-join": "4.0.3",
|
|
"@typescript-eslint/eslint-plugin": "8.4.0",
|
|
"@typescript-eslint/parser": "8.4.0",
|
|
"ban-sensitive-files": "1.10.5",
|
|
"commitizen": "4.3.0",
|
|
"cz-conventional-changelog": "3.3.0",
|
|
"dependency-check": "4.1.0",
|
|
"git-issues": "1.3.1",
|
|
"license-checker": "25.0.1",
|
|
"prettier-standard": "16.4.1",
|
|
"semantic-release": "24.1.0",
|
|
"simple-commit-message": "4.1.3",
|
|
"super-strong-password-generator": "2.0.2",
|
|
"super-strong-password-generator-es": "2.0.2",
|
|
"travis-deploy-once": "5.0.11",
|
|
"tslint": "6.1.3",
|
|
"tsx": "^4.19.1",
|
|
"vitest": "2.0.5"
|
|
},
|
|
"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": {
|
|
"tagFormat": "${version}",
|
|
"debug": true,
|
|
"branches": [
|
|
"main"
|
|
],
|
|
"verifyConditions": [
|
|
"@semantic-release/github"
|
|
],
|
|
"plugins": [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
"@semantic-release/changelog"
|
|
],
|
|
"prepare": [
|
|
"@semantic-release/npm",
|
|
{
|
|
"path": "@semantic-release/exec",
|
|
"cmd": "git status"
|
|
},
|
|
"@semantic-release/changelog",
|
|
{
|
|
"path": "@semantic-release/git",
|
|
"assets": [
|
|
"package.json",
|
|
"CHANGELOG.md"
|
|
]
|
|
}
|
|
],
|
|
"publish": [
|
|
"@semantic-release/npm",
|
|
"@semantic-release/github"
|
|
],
|
|
"analyzeCommits": "simple-commit-message"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
},
|
|
"pre-git": {
|
|
"commit-msg": "simple",
|
|
"pre-commit": [],
|
|
"pre-push": [],
|
|
"post-commit": [],
|
|
"post-checkout": [],
|
|
"post-merge": []
|
|
}
|
|
}
|
|
}
|