baileys-joss 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2920 -1312
- package/package.json +146 -146
package/package.json
CHANGED
|
@@ -1,146 +1,146 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "baileys-joss",
|
|
3
|
-
"type": "module",
|
|
4
|
-
"version": "2.0.
|
|
5
|
-
"description": "A WebSockets library for interacting with WhatsApp Web",
|
|
6
|
-
"keywords": [
|
|
7
|
-
"whatsapp",
|
|
8
|
-
"whatsapp-api",
|
|
9
|
-
"whatsapp-bot",
|
|
10
|
-
"whatsapp-web",
|
|
11
|
-
"baileys",
|
|
12
|
-
"baileys-fork",
|
|
13
|
-
"interactive-button",
|
|
14
|
-
"interactive-message",
|
|
15
|
-
"list-message",
|
|
16
|
-
"lid-mapping",
|
|
17
|
-
"automation",
|
|
18
|
-
"chatbot",
|
|
19
|
-
"wa-bot"
|
|
20
|
-
],
|
|
21
|
-
"homepage": "https://github.com/firdausmntp/Baileys-Joss#readme",
|
|
22
|
-
"repository": {
|
|
23
|
-
"type": "git",
|
|
24
|
-
"url": "git+https://github.com/firdausmntp/Baileys-Joss.git"
|
|
25
|
-
},
|
|
26
|
-
"bugs": {
|
|
27
|
-
"url": "https://github.com/firdausmntp/Baileys-Joss/issues"
|
|
28
|
-
},
|
|
29
|
-
"license": "MIT",
|
|
30
|
-
"author": {
|
|
31
|
-
"name": "firdausmntp",
|
|
32
|
-
"url": "https://github.com/firdausmntp"
|
|
33
|
-
},
|
|
34
|
-
"main": "lib/index.js",
|
|
35
|
-
"types": "lib/index.d.ts",
|
|
36
|
-
"files": [
|
|
37
|
-
"lib/**/*",
|
|
38
|
-
"WAProto/**/*",
|
|
39
|
-
"engine-requirements.js"
|
|
40
|
-
],
|
|
41
|
-
"scripts": {
|
|
42
|
-
"build": "tsc -P tsconfig.build.json && tsc-esm-fix --tsconfig=tsconfig.build.json --ext=.js",
|
|
43
|
-
"example": "tsx ./Example/example.ts",
|
|
44
|
-
"gen:protobuf": "sh WAProto/GenerateStatics.sh",
|
|
45
|
-
"format": "prettier --write \"src/**/*.{ts,js,json,md}\"",
|
|
46
|
-
"lint": "tsc && eslint src --ext .js,.ts",
|
|
47
|
-
"lint:fix": "npm run format && npm run lint -- --fix",
|
|
48
|
-
"prepack": "npm run build",
|
|
49
|
-
"prepare": "npm run build",
|
|
50
|
-
"preinstall": "node ./engine-requirements.js",
|
|
51
|
-
"test": "node --experimental-vm-modules ./node_modules/.bin/jest --testMatch '**/*.test.ts'",
|
|
52
|
-
"test:e2e": "NODE_TLS_REJECT_UNAUTHORIZED=0 node --experimental-vm-modules ./node_modules/.bin/jest --runInBand --forceExit --testMatch '**/*.test-e2e.ts'",
|
|
53
|
-
"update:version": "tsx ./scripts/update-version.ts"
|
|
54
|
-
},
|
|
55
|
-
"dependencies": {
|
|
56
|
-
"@cacheable/node-cache": "^1.4.0",
|
|
57
|
-
"@hapi/boom": "^9.1.3",
|
|
58
|
-
"async-mutex": "^0.5.0",
|
|
59
|
-
"libsignal": "^6.0.0",
|
|
60
|
-
"lru-cache": "^11.1.0",
|
|
61
|
-
"music-metadata": "^11.12.3",
|
|
62
|
-
"p-queue": "^9.0.0",
|
|
63
|
-
"pino": "^9.6",
|
|
64
|
-
"protobufjs": "^7.5.6",
|
|
65
|
-
"whatsapp-rust-bridge": "0.5.4",
|
|
66
|
-
"ws": "^8.13.0"
|
|
67
|
-
},
|
|
68
|
-
"devDependencies": {
|
|
69
|
-
"@eslint/eslintrc": "^3.3.1",
|
|
70
|
-
"@eslint/js": "^9.31.0",
|
|
71
|
-
"@types/jest": "^30.0.0",
|
|
72
|
-
"@types/node": "^20.9.0",
|
|
73
|
-
"@types/ws": "^8.0.0",
|
|
74
|
-
"@typescript-eslint/eslint-plugin": "^8",
|
|
75
|
-
"@typescript-eslint/parser": "^8",
|
|
76
|
-
"@whiskeysockets/eslint-config": "^1.0.0",
|
|
77
|
-
"esbuild-register": "^3.6.0",
|
|
78
|
-
"eslint": "^9",
|
|
79
|
-
"eslint-config-prettier": "^10.1.2",
|
|
80
|
-
"eslint-plugin-prettier": "^5.4.0",
|
|
81
|
-
"jest": "^30.0.5",
|
|
82
|
-
"jimp": "^1.6.1",
|
|
83
|
-
"jiti": "^2.4.2",
|
|
84
|
-
"json": "^11.0.0",
|
|
85
|
-
"link-preview-js": "^3.0.0",
|
|
86
|
-
"lru-cache": "^11.1.0",
|
|
87
|
-
"open": "^8.4.2",
|
|
88
|
-
"pino-pretty": "^13.1.1",
|
|
89
|
-
"prettier": "^3.5.3",
|
|
90
|
-
"protobufjs-cli": "^1.1.3",
|
|
91
|
-
"release-it": "^20.0.1",
|
|
92
|
-
"ts-jest": "^29.4.0",
|
|
93
|
-
"tsc-esm-fix": "^3.1.2",
|
|
94
|
-
"tsx": "^4.20.3",
|
|
95
|
-
"typescript": "^5.8.2"
|
|
96
|
-
},
|
|
97
|
-
"peerDependencies": {
|
|
98
|
-
"audio-decode": "^2.1.3",
|
|
99
|
-
"jimp": "^1.6.1",
|
|
100
|
-
"link-preview-js": "^3.0.0",
|
|
101
|
-
"sharp": "*"
|
|
102
|
-
},
|
|
103
|
-
"resolutions": {
|
|
104
|
-
"ajv@npm:^6.12.4": "^6.14.0",
|
|
105
|
-
"basic-ftp": "^5.2.4",
|
|
106
|
-
"brace-expansion@npm:^1.1.7": "^1.1.13",
|
|
107
|
-
"brace-expansion@npm:^2.0.1": "^2.0.3",
|
|
108
|
-
"flatted": "^3.4.2",
|
|
109
|
-
"glob@npm:^10.2.2": "^10.5.0",
|
|
110
|
-
"glob@npm:^10.3.10": "^10.5.0",
|
|
111
|
-
"glob@npm:^10.5.0": "^10.5.0",
|
|
112
|
-
"handlebars": "^4.7.9",
|
|
113
|
-
"ip-address": "^10.1.1",
|
|
114
|
-
"js-yaml@npm:^3.13.1": "^3.14.2",
|
|
115
|
-
"js-yaml@npm:^4.1.0": "^4.1.1",
|
|
116
|
-
"markdown-it": "^14.1.1",
|
|
117
|
-
"minimatch@npm:^3.0.4": "^3.1.5",
|
|
118
|
-
"minimatch@npm:^3.1.2": "^3.1.5",
|
|
119
|
-
"minimatch@npm:^5.0.1": "^5.1.8",
|
|
120
|
-
"minimatch@npm:^9.0.4": "^9.0.9",
|
|
121
|
-
"minimatch@npm:^9.0.5": "^9.0.9",
|
|
122
|
-
"picomatch@npm:^2.0.4": "^2.3.2",
|
|
123
|
-
"picomatch@npm:^2.3.1": "^2.3.2",
|
|
124
|
-
"picomatch@npm:^4.0.0": "^4.0.4",
|
|
125
|
-
"picomatch@npm:^4.0.2": "^4.0.4",
|
|
126
|
-
"socks": "^2.8.8",
|
|
127
|
-
"tar": "^7.5.11",
|
|
128
|
-
"tmp": "^0.2.5",
|
|
129
|
-
"underscore": "^1.13.8",
|
|
130
|
-
"yaml@npm:^2.6.1": "^2.8.4"
|
|
131
|
-
},
|
|
132
|
-
"peerDependenciesMeta": {
|
|
133
|
-
"audio-decode": {
|
|
134
|
-
"optional": true
|
|
135
|
-
},
|
|
136
|
-
"jimp": {
|
|
137
|
-
"optional": true
|
|
138
|
-
},
|
|
139
|
-
"link-preview-js": {
|
|
140
|
-
"optional": true
|
|
141
|
-
}
|
|
142
|
-
},
|
|
143
|
-
"engines": {
|
|
144
|
-
"node": ">=20.0.0"
|
|
145
|
-
}
|
|
146
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "baileys-joss",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "2.0.1",
|
|
5
|
+
"description": "A WebSockets library for interacting with WhatsApp Web",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"whatsapp",
|
|
8
|
+
"whatsapp-api",
|
|
9
|
+
"whatsapp-bot",
|
|
10
|
+
"whatsapp-web",
|
|
11
|
+
"baileys",
|
|
12
|
+
"baileys-fork",
|
|
13
|
+
"interactive-button",
|
|
14
|
+
"interactive-message",
|
|
15
|
+
"list-message",
|
|
16
|
+
"lid-mapping",
|
|
17
|
+
"automation",
|
|
18
|
+
"chatbot",
|
|
19
|
+
"wa-bot"
|
|
20
|
+
],
|
|
21
|
+
"homepage": "https://github.com/firdausmntp/Baileys-Joss#readme",
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/firdausmntp/Baileys-Joss.git"
|
|
25
|
+
},
|
|
26
|
+
"bugs": {
|
|
27
|
+
"url": "https://github.com/firdausmntp/Baileys-Joss/issues"
|
|
28
|
+
},
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"author": {
|
|
31
|
+
"name": "firdausmntp",
|
|
32
|
+
"url": "https://github.com/firdausmntp"
|
|
33
|
+
},
|
|
34
|
+
"main": "lib/index.js",
|
|
35
|
+
"types": "lib/index.d.ts",
|
|
36
|
+
"files": [
|
|
37
|
+
"lib/**/*",
|
|
38
|
+
"WAProto/**/*",
|
|
39
|
+
"engine-requirements.js"
|
|
40
|
+
],
|
|
41
|
+
"scripts": {
|
|
42
|
+
"build": "tsc -P tsconfig.build.json && tsc-esm-fix --tsconfig=tsconfig.build.json --ext=.js",
|
|
43
|
+
"example": "tsx ./Example/example.ts",
|
|
44
|
+
"gen:protobuf": "sh WAProto/GenerateStatics.sh",
|
|
45
|
+
"format": "prettier --write \"src/**/*.{ts,js,json,md}\"",
|
|
46
|
+
"lint": "tsc && eslint src --ext .js,.ts",
|
|
47
|
+
"lint:fix": "npm run format && npm run lint -- --fix",
|
|
48
|
+
"prepack": "npm run build",
|
|
49
|
+
"prepare": "npm run build",
|
|
50
|
+
"preinstall": "node ./engine-requirements.js",
|
|
51
|
+
"test": "node --experimental-vm-modules ./node_modules/.bin/jest --testMatch '**/*.test.ts'",
|
|
52
|
+
"test:e2e": "NODE_TLS_REJECT_UNAUTHORIZED=0 node --experimental-vm-modules ./node_modules/.bin/jest --runInBand --forceExit --testMatch '**/*.test-e2e.ts'",
|
|
53
|
+
"update:version": "tsx ./scripts/update-version.ts"
|
|
54
|
+
},
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"@cacheable/node-cache": "^1.4.0",
|
|
57
|
+
"@hapi/boom": "^9.1.3",
|
|
58
|
+
"async-mutex": "^0.5.0",
|
|
59
|
+
"libsignal": "^6.0.0",
|
|
60
|
+
"lru-cache": "^11.1.0",
|
|
61
|
+
"music-metadata": "^11.12.3",
|
|
62
|
+
"p-queue": "^9.0.0",
|
|
63
|
+
"pino": "^9.6",
|
|
64
|
+
"protobufjs": "^7.5.6",
|
|
65
|
+
"whatsapp-rust-bridge": "0.5.4",
|
|
66
|
+
"ws": "^8.13.0"
|
|
67
|
+
},
|
|
68
|
+
"devDependencies": {
|
|
69
|
+
"@eslint/eslintrc": "^3.3.1",
|
|
70
|
+
"@eslint/js": "^9.31.0",
|
|
71
|
+
"@types/jest": "^30.0.0",
|
|
72
|
+
"@types/node": "^20.9.0",
|
|
73
|
+
"@types/ws": "^8.0.0",
|
|
74
|
+
"@typescript-eslint/eslint-plugin": "^8",
|
|
75
|
+
"@typescript-eslint/parser": "^8",
|
|
76
|
+
"@whiskeysockets/eslint-config": "^1.0.0",
|
|
77
|
+
"esbuild-register": "^3.6.0",
|
|
78
|
+
"eslint": "^9",
|
|
79
|
+
"eslint-config-prettier": "^10.1.2",
|
|
80
|
+
"eslint-plugin-prettier": "^5.4.0",
|
|
81
|
+
"jest": "^30.0.5",
|
|
82
|
+
"jimp": "^1.6.1",
|
|
83
|
+
"jiti": "^2.4.2",
|
|
84
|
+
"json": "^11.0.0",
|
|
85
|
+
"link-preview-js": "^3.0.0",
|
|
86
|
+
"lru-cache": "^11.1.0",
|
|
87
|
+
"open": "^8.4.2",
|
|
88
|
+
"pino-pretty": "^13.1.1",
|
|
89
|
+
"prettier": "^3.5.3",
|
|
90
|
+
"protobufjs-cli": "^1.1.3",
|
|
91
|
+
"release-it": "^20.0.1",
|
|
92
|
+
"ts-jest": "^29.4.0",
|
|
93
|
+
"tsc-esm-fix": "^3.1.2",
|
|
94
|
+
"tsx": "^4.20.3",
|
|
95
|
+
"typescript": "^5.8.2"
|
|
96
|
+
},
|
|
97
|
+
"peerDependencies": {
|
|
98
|
+
"audio-decode": "^2.1.3",
|
|
99
|
+
"jimp": "^1.6.1",
|
|
100
|
+
"link-preview-js": "^3.0.0",
|
|
101
|
+
"sharp": "*"
|
|
102
|
+
},
|
|
103
|
+
"resolutions": {
|
|
104
|
+
"ajv@npm:^6.12.4": "^6.14.0",
|
|
105
|
+
"basic-ftp": "^5.2.4",
|
|
106
|
+
"brace-expansion@npm:^1.1.7": "^1.1.13",
|
|
107
|
+
"brace-expansion@npm:^2.0.1": "^2.0.3",
|
|
108
|
+
"flatted": "^3.4.2",
|
|
109
|
+
"glob@npm:^10.2.2": "^10.5.0",
|
|
110
|
+
"glob@npm:^10.3.10": "^10.5.0",
|
|
111
|
+
"glob@npm:^10.5.0": "^10.5.0",
|
|
112
|
+
"handlebars": "^4.7.9",
|
|
113
|
+
"ip-address": "^10.1.1",
|
|
114
|
+
"js-yaml@npm:^3.13.1": "^3.14.2",
|
|
115
|
+
"js-yaml@npm:^4.1.0": "^4.1.1",
|
|
116
|
+
"markdown-it": "^14.1.1",
|
|
117
|
+
"minimatch@npm:^3.0.4": "^3.1.5",
|
|
118
|
+
"minimatch@npm:^3.1.2": "^3.1.5",
|
|
119
|
+
"minimatch@npm:^5.0.1": "^5.1.8",
|
|
120
|
+
"minimatch@npm:^9.0.4": "^9.0.9",
|
|
121
|
+
"minimatch@npm:^9.0.5": "^9.0.9",
|
|
122
|
+
"picomatch@npm:^2.0.4": "^2.3.2",
|
|
123
|
+
"picomatch@npm:^2.3.1": "^2.3.2",
|
|
124
|
+
"picomatch@npm:^4.0.0": "^4.0.4",
|
|
125
|
+
"picomatch@npm:^4.0.2": "^4.0.4",
|
|
126
|
+
"socks": "^2.8.8",
|
|
127
|
+
"tar": "^7.5.11",
|
|
128
|
+
"tmp": "^0.2.5",
|
|
129
|
+
"underscore": "^1.13.8",
|
|
130
|
+
"yaml@npm:^2.6.1": "^2.8.4"
|
|
131
|
+
},
|
|
132
|
+
"peerDependenciesMeta": {
|
|
133
|
+
"audio-decode": {
|
|
134
|
+
"optional": true
|
|
135
|
+
},
|
|
136
|
+
"jimp": {
|
|
137
|
+
"optional": true
|
|
138
|
+
},
|
|
139
|
+
"link-preview-js": {
|
|
140
|
+
"optional": true
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
"engines": {
|
|
144
|
+
"node": ">=20.0.0"
|
|
145
|
+
}
|
|
146
|
+
}
|