Update package names
This commit is contained in:
parent
89d229eba9
commit
85a0fc11e5
106 changed files with 1908 additions and 2686 deletions
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "bridge-worker",
|
||||
"name": "@link-stack/bridge-worker",
|
||||
"version": "0.2.0",
|
||||
"type": "module",
|
||||
"main": "build/main/index.js",
|
||||
|
|
@ -12,25 +12,25 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@hapi/wreck": "^18.1.0",
|
||||
"bridge-common": "*",
|
||||
"fluent-ffmpeg": "^2.1.2",
|
||||
"@link-stack/bridge-common": "*",
|
||||
"fluent-ffmpeg": "^2.1.3",
|
||||
"graphile-worker": "^0.16.6",
|
||||
"html-to-text": "^9.0.5",
|
||||
"jest": "^29.7.0",
|
||||
"kysely": "^0.27.3",
|
||||
"pg": "^8.11.5",
|
||||
"remeda": "^1.61.0",
|
||||
"twilio": "^5.0.4"
|
||||
"pg": "^8.12.0",
|
||||
"remeda": "^2.0.4",
|
||||
"twilio": "^5.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "7.24.5",
|
||||
"@babel/preset-env": "7.24.5",
|
||||
"@babel/preset-typescript": "7.24.1",
|
||||
"@babel/core": "7.24.6",
|
||||
"@babel/preset-env": "7.24.6",
|
||||
"@babel/preset-typescript": "7.24.6",
|
||||
"@types/fluent-ffmpeg": "^2.1.24",
|
||||
"dotenv-cli": "^7.4.2",
|
||||
"eslint": "^9.0.0",
|
||||
"prettier": "^3.2.5",
|
||||
"ts-config": "*",
|
||||
"@link-stack/eslint-config": "*",
|
||||
"prettier": "^3.3.0",
|
||||
"@link-stack/typescript-config": "*",
|
||||
"ts-node": "^10.9.2",
|
||||
"typedoc": "^0.25.13",
|
||||
"typescript": "^5.4.5"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { db } from "bridge-common";
|
||||
import { db } from "@link-stack/bridge-common";
|
||||
|
||||
export interface NotifyWebhooksOptions {
|
||||
backendId: string;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { db, getWorkerUtils } from "bridge-common";
|
||||
import { db, getWorkerUtils } from "@link-stack/bridge-common";
|
||||
|
||||
interface ReceiveFacebookMessageTaskOptions {
|
||||
message: any;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { db } from "bridge-common";
|
||||
import { db } from "@link-stack/bridge-common";
|
||||
|
||||
interface SendFacebookMessageTaskOptions {
|
||||
token: string;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// import { db, getWorkerUtils } from "bridge-common";
|
||||
// import { db, getWorkerUtils } from "@link-stack/bridge-common";
|
||||
|
||||
interface ReceiveSignalMessageTaskOptions {
|
||||
message: any;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// import { db, getWorkerUtils } from "bridge-common";
|
||||
// import { db, getWorkerUtils } from "@link-stack/bridge-common";
|
||||
|
||||
interface SendSignalMessageTaskOptions {
|
||||
message: any;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// import { db, getWorkerUtils } from "bridge-common";
|
||||
// import { db, getWorkerUtils } from "@link-stack/bridge-common";
|
||||
|
||||
interface ReceiveVoiceMessageTaskOptions {
|
||||
message: any;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// import { db, getWorkerUtils } from "bridge-common";
|
||||
// import { db, getWorkerUtils } from "@link-stack/bridge-common";
|
||||
|
||||
interface SendVoiceMessageTaskOptions {
|
||||
message: any;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { db, getWorkerUtils } from "bridge-common";
|
||||
import { db, getWorkerUtils } from "@link-stack/bridge-common";
|
||||
|
||||
interface ReceiveWhatsappMessageTaskOptions {
|
||||
token: string;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { db } from "bridge-common";
|
||||
import { db } from "@link-stack/bridge-common";
|
||||
|
||||
interface SendWhatsappMessageTaskOptions {
|
||||
token: string;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"extends": "ts-config",
|
||||
"extends": "@link-stack/typescript-config",
|
||||
"compilerOptions": {
|
||||
"outDir": "build/main",
|
||||
"module": "esnext",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue