-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.21 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "ye-bail",
"version": "0.4.6",
"description": "WhatsApp Web API Library",
"keywords": [],
"homepage": "https://github.com/yemobyte/ye-bail",
"repository": {
"url": "https://github.com/yemobyte/ye-bail"
},
"license": "GPL-3.0",
"author": "yemobyte",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/*",
"WAProto/*",
"requirements.js"
],
"scripts": {
"build:all": "find lib -name '*.d.ts' -type f -delete && tsc && typedoc",
"build:docs": "typedoc",
"build:tsc": "find lib -name '*.d.ts' -type f -delete && tsc",
"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",
"example": "node --inspect -r ts-node/register Example/example.ts",
"gen:protobuf": "sh WAProto/GenerateStatics.sh",
"lint": "eslint lib --ext .js,.ts,.jsx,.tsx",
"lint:fix": "eslint lib --fix --ext .js,.ts,.jsx,.tsx",
"prepack": "echo 'ye-bail WhatsApp Library'",
"prepare": "echo 'ye-bail WhatsApp Library'",
"preinstall": "node ./requirements.js",
"release": "release-it",
"release:patch": "release-it patch",
"release:minor": "release-it minor",
"release:major": "release-it major",
"version": "npm run changelog:update && git add CHANGELOG.md",
"test": "jest --passWithNoTests"
},
"dependencies": {
"@adiwajshing/keyed-db": "^0.2.4",
"@cacheable/node-cache": "^1.4.0",
"@hapi/boom": "^9.1.3",
"@release-it/conventional-changelog": "^10.0.3",
"audio-decode": "^2.2.3",
"async-mutex": "^0.5.0",
"axios": "^1.6.0",
"cache-manager": "^5.7.6",
"chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.10",
"fflate": "^0.8.1",
"gradient-string": "^2.0.2",
"libphonenumber-js": "^1.10.20",
"libsignal": "github:yemobyte/libsignal-node",
"lodash": "^4.17.21",
"music-metadata": "^7.12.3",
"p-queue": "^9.0.0",
"pino": "^9.6",
"protobufjs": "^6.11.3",
"uuid": "^10.0.0",
"ws": "^8.13.0"
},
"devDependencies": {
"@adiwajshing/eslint-config": "github:adiwajshing/eslint-config",
"@types/got": "^9.6.11",
"@types/jest": "^27.5.1",
"@types/node": "^16.18.126",
"@types/sharp": "^0.29.4",
"@types/ws": "^8.0.0",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.0.0",
"jest": "^27.0.6",
"jimp": "^0.16.1",
"json": "^11.0.0",
"link-preview-js": "^3.0.0",
"open": "^8.4.2",
"qrcode-terminal": "^0.12.0",
"release-it": "^15.10.3",
"sharp": "^0.34.1",
"ts-jest": "^27.0.3",
"ts-node": "^10.8.1",
"typedoc": "^0.27.9",
"typescript": "^5.8.2"
},
"peerDependencies": {
"audio-decode": "^2.1.3",
"jimp": "^0.16.1",
"link-preview-js": "^3.0.0",
"qrcode-terminal": "^0.12.0",
"sharp": "^0.34.1"
},
"peerDependenciesMeta": {
"audio-decode": {
"optional": true
},
"jimp": {
"optional": true
},
"link-preview-js": {
"optional": true
},
"qrcode-terminal": {
"optional": true
},
"sharp": {
"optional": true
}
},
"packageManager": "yarn@1.22.19",
"engines": {
"node": ">=20.0.0"
}
}