mirror of
https://github.com/cheveguerra/whatsapp-web.js.git
synced 2026-04-18 11:39:14 +00:00
* index.js * [authReady] - new BaseAuthStrategy function * [RemoteAuth] - new Class RemoteAuth added * Eslint Fixes * Eslint Fixes * Added types for RemoteAuth (mostly assumed types from PR message and src/authStrategies/RemoteAuth.js) * [dependency updates] - added unzipper & archiver * [Types] - Fixing typescript declarations * Renaming Base Class Hook * auth hook rename on client * [Error Handling] - Delegate responsability to end users * [Refactor] - deletemetadata code refactor * [Refactor] - backupSyncIntervalMs renamed * [Refactor] - Minor improvement on deleteMetadata * [Refactor] - backupSyncIntervalMs rename on index.d.ts * [Update] - Fix for Ubuntu crahsing on extractSession * [Update] - Delegate responsability to stores of making sure the previous session is deleted strictly only after the new one is saved * [Update] - Improve file paths handling & naming (reduce assumptions between RemoteAuth and stores) * [Update] - Adding new event <REMOTE_SESSION_SAVED> on Constants.js * [Update] - Adding new authHooks <destroy> & <disconnect> * [Update] - Adding <destroy> & <disconnect> hooks on Client.js * [Update] - Adding new features to index.d.ts * [RemoteAuth] - New Features added to RemoteAuth Class * [dependency updates] - added fs-extra * [Cross Platform] - Windows is now compatible with RemoteAuth * [optionalDependencies] - moved archiver, fs-extra & unzipper to optional dependencies on package.json * [optionalDependencies] - adding validation for when optional dependencies are missing * [Update] - Node Deprecation warining for rmdir changed for rm instead Co-authored-by: h110m <nichtwitzig228@gmail.com>
61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
JSON
{
|
|
"name": "whatsapp-web.js",
|
|
"version": "1.17.1",
|
|
"description": "Library for interacting with the WhatsApp Web API ",
|
|
"main": "./index.js",
|
|
"typings": "./index.d.ts",
|
|
"scripts": {
|
|
"test": "mocha tests --recursive --timeout 5000",
|
|
"test-single": "mocha",
|
|
"shell": "node --experimental-repl-await ./shell.js",
|
|
"generate-docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/pedroslopez/whatsapp-web.js.git"
|
|
},
|
|
"keywords": [
|
|
"whatsapp",
|
|
"whatsapp-web",
|
|
"api",
|
|
"bot",
|
|
"client",
|
|
"node"
|
|
],
|
|
"author": "Pedro Lopez",
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/pedroslopez/whatsapp-web.js/issues"
|
|
},
|
|
"homepage": "https://wwebjs.dev/",
|
|
"dependencies": {
|
|
"@pedroslopez/moduleraid": "^5.0.2",
|
|
"fluent-ffmpeg": "^2.1.2",
|
|
"jsqr": "^1.3.1",
|
|
"mime": "^3.0.0",
|
|
"node-fetch": "^2.6.5",
|
|
"node-webpmux": "^3.1.0",
|
|
"puppeteer": "^13.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node-fetch": "^2.5.12",
|
|
"chai": "^4.3.4",
|
|
"chai-as-promised": "^7.1.1",
|
|
"dotenv": "^16.0.0",
|
|
"eslint": "^8.4.1",
|
|
"eslint-plugin-mocha": "^10.0.3",
|
|
"jsdoc": "^3.6.4",
|
|
"jsdoc-baseline": "^0.1.5",
|
|
"mocha": "^9.0.2",
|
|
"sinon": "^13.0.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=12.0.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"archiver": "^5.3.1",
|
|
"fs-extra": "^10.1.0",
|
|
"unzipper": "^0.10.11"
|
|
}
|
|
}
|