forked from wppconnect-team/wa-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.43 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@wppconnect/wa-js",
"version": "3.8.4",
"description": "WPPConnect/WA-JS is an open-source project with the aim of exporting functions from WhatsApp Web",
"license": "Apache-2.0",
"author": {
"name": "Edgard Messias",
"email": "[email protected]",
"url": "https://github.com/edgardmessias"
},
"exports": {
".": "./dist/wppconnect-wa.js"
},
"types": "dist/index.d.ts",
"scripts": {
"build:dev": "webpack --devtool inline-source-map --mode development",
"build:prd": "webpack",
"changelog:last": "conventional-changelog -p angular -r 2",
"changelog:preview": "conventional-changelog -p angular -u",
"changelog:update": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"clean": "shx rm -rf dist",
"commit": "cz",
"docs:build": "npm run docs:clean && typedoc --gitRevision main",
"docs:clean": "shx rm -rf docs",
"launch:attach": "ts-node ./src/tools/launchAttach.ts",
"launch:local": "ts-node ./src/tools/launchLocal.ts",
"launch:protocol-log": "ts-node ./src/tools/launchProtocolLog.ts",
"lint": "npx eslint --ext .ts src",
"prepare": "husky install && npm run clean && npm run build:prd",
"release": "release-it",
"test": "playwright test --project tests",
"test:prepare": "playwright test --project prepare --headed",
"update-models-attributes": "ts-node ./src/tools/updateModelsAttributes.ts",
"update-module-id": "ts-node ./src/tools/updateModuleID.ts",
"wa-source": "npm run wa-source:clean && npm run wa-source:download",
"wa-source:clean": "shx rm -rf wa-source",
"wa-source:download": "ts-node ./src/tools/extractWhatsappSource.ts",
"wa-source:format": "prettier --write ./wa-source",
"watch": "webpack watch --devtool inline-source-map --mode development"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/prompt-cli": "^19.4.0",
"@playwright/test": "^1.46.1",
"@types/debug": "^4.1.12",
"@types/node": "^16.18.105",
"@types/node-fetch": "^2.6.11",
"@types/parse-data-url": "^3.0.2",
"@types/prettier": "^3.0.0",
"@types/shelljs": "^0.8.15",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@wppconnect/wa-version": "^1.5.270",
"buffer": "^6.0.3",
"compare-versions": "^6.1.1",
"compressorjs": "^1.2.1",
"conventional-changelog-angular": "^8.0.0",
"conventional-changelog-cli": "^5.0.0",
"debug": "^4.3.6",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eventemitter2": "^6.4.9",
"file-type": "~16.5.4",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"node-fetch": "^2.7.0",
"parse-data-url": "^6.0.0",
"playwright-chromium": "^1.46.1",
"prettier": "^3.3.3",
"release-it": "^17.6.0",
"shx": "^0.3.4",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"ts-morph": "^23.0.0",
"ts-node": "^10.9.2",
"typedoc": "^0.26.6",
"typedoc-plugin-mdn-links": "^3.2.10",
"typedoc-plugin-missing-exports": "^3.0.0",
"typescript": "^5.5.4",
"typescript-debounce-decorator": "^0.0.18",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"engines": {
"whatsapp-web": ">=2.2326.10-beta"
}
}