-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 901 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 901 Bytes
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
{
"name": "wa-diff",
"version": "1.0.0",
"description": "Tool to version WhatsApp Web JavaScript bundles and analyze diffs across releases.",
"private": true,
"packageManager": "npm@11.12.1",
"main": "main.js",
"type": "commonjs",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"start": "node main.js",
"fetch": "node main.js",
"check": "node --check main.js",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [
"whatsapp",
"whatsapp-web",
"reverse-engineering",
"bundles",
"diff",
"deobfuscation"
],
"author": "Vinicius",
"license": "ISC",
"dependencies": {
"@vinikjkkj/wa-fetcher": "^0.2.0",
"prettier": "^3.8.2",
"wa-modules-loader": "^1.1.2"
}
}