-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.52 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.52 KB
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
{
"name": "wa-modules-loader",
"version": "1.1.2",
"description": "A library to load/register deobfuscated modules and a CLI to export WA modules",
"keywords": [
"whatsapp",
"whatsapp-web",
"metro",
"deobfuscation",
"module-loader",
"cli"
],
"author": "vinikjkkj",
"repository": {
"type": "git",
"url": "git+https://github.com/vinikjkkj/wa-modules-loader.git"
},
"bugs": {
"url": "https://github.com/vinikjkkj/wa-modules-loader/issues"
},
"homepage": "https://github.com/vinikjkkj/wa-modules-loader#readme",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/vinikjkkj"
},
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/import/index.d.ts",
"default": "./dist/import/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"main": "dist/import/index.js",
"types": "dist/import/index.d.ts",
"bin": {
"wa-export": "dist/export/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"prepare": "tsc",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^20.11.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2"
},
"dependencies": {
"terser": "^5.44.1"
}
}