codeBOKER commited on
Commit
b33b3ba
·
verified ·
1 Parent(s): 53a6868

Create package.json

Browse files
Files changed (1) hide show
  1. package.json +140 -0
package.json ADDED
@@ -0,0 +1,140 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "baileys",
3
+ "type": "module",
4
+ "version": "7.0.0-rc13",
5
+ "description": "A WebSockets library for interacting with WhatsApp Web",
6
+ "keywords": [
7
+ "whatsapp",
8
+ "automation"
9
+ ],
10
+ "homepage": "https://github.com/WhiskeySockets/Baileys/",
11
+ "repository": {
12
+ "url": "git@github.com:WhiskeySockets/Baileys.git"
13
+ },
14
+ "license": "MIT",
15
+ "author": "Rajeh Taher",
16
+ "main": "lib/index.js",
17
+ "types": "lib/index.d.ts",
18
+ "files": [
19
+ "lib/**/*",
20
+ "WAProto/**/*",
21
+ "engine-requirements.js"
22
+ ],
23
+ "scripts": {
24
+ "build:all": "npm run build && npm run build:docs",
25
+ "build:docs": "typedoc",
26
+ "build": "tsc -P tsconfig.build.json && tsc-esm-fix --tsconfig=tsconfig.build.json --ext=.js",
27
+ "changelog:last": "conventional-changelog -p angular -r 2",
28
+ "changelog:preview": "conventional-changelog -p angular -u",
29
+ "changelog:update": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
30
+ "example": "tsx ./Example/example.ts",
31
+ "gen:protobuf": "sh WAProto/GenerateStatics.sh",
32
+ "format": "prettier --write \"src/**/*.{ts,js,json,md}\"",
33
+ "lint": "tsc && eslint src --ext .js,.ts",
34
+ "lint:fix": "npm run format && npm run lint -- --fix",
35
+ "prepack": "npm run build",
36
+ "prepare": "npm run build",
37
+ "preinstall": "node ./engine-requirements.js",
38
+ "release": "release-it",
39
+ "test": "node --experimental-vm-modules ./node_modules/.bin/jest --testMatch '**/*.test.ts'",
40
+ "test:e2e": "NODE_TLS_REJECT_UNAUTHORIZED=0 node --experimental-vm-modules ./node_modules/.bin/jest --runInBand --forceExit --testMatch '**/*.test-e2e.ts'",
41
+ "update:version": "tsx ./scripts/update-version.ts"
42
+ },
43
+ "dependencies": {
44
+ "@cacheable/node-cache": "^1.4.0",
45
+ "@hapi/boom": "^9.1.3",
46
+ "async-mutex": "^0.5.0",
47
+ "libsignal": "^6.0.0",
48
+ "lru-cache": "^11.1.0",
49
+ "music-metadata": "^11.12.3",
50
+ "p-queue": "^9.0.0",
51
+ "pino": "^9.6",
52
+ "protobufjs": "^7.5.6",
53
+ "whatsapp-rust-bridge": "0.5.4",
54
+ "ws": "^8.13.0"
55
+ },
56
+ "devDependencies": {
57
+ "@eslint/eslintrc": "^3.3.1",
58
+ "@eslint/js": "^9.31.0",
59
+ "@types/jest": "^30.0.0",
60
+ "@types/node": "^20.9.0",
61
+ "@types/ws": "^8.0.0",
62
+ "@typescript-eslint/eslint-plugin": "^8",
63
+ "@typescript-eslint/parser": "^8",
64
+ "@whiskeysockets/eslint-config": "^1.0.0",
65
+ "conventional-changelog": "^7.1.1",
66
+ "conventional-changelog-angular": "^8.0.0",
67
+ "esbuild-register": "^3.6.0",
68
+ "eslint": "^9",
69
+ "eslint-config-prettier": "^10.1.2",
70
+ "eslint-plugin-prettier": "^5.4.0",
71
+ "jest": "^30.0.5",
72
+ "jimp": "^1.6.1",
73
+ "jiti": "^2.4.2",
74
+ "json": "^11.0.0",
75
+ "link-preview-js": "^3.0.0",
76
+ "lru-cache": "^11.1.0",
77
+ "open": "^8.4.2",
78
+ "pino-pretty": "^13.1.1",
79
+ "prettier": "^3.5.3",
80
+ "protobufjs-cli": "^1.1.3",
81
+ "release-it": "^20.0.1",
82
+ "ts-jest": "^29.4.0",
83
+ "tsc-esm-fix": "^3.1.2",
84
+ "tsx": "^4.20.3",
85
+ "typedoc": "^0.27.9",
86
+ "typedoc-plugin-markdown": "4.4.2",
87
+ "typescript": "^5.8.2"
88
+ },
89
+ "peerDependencies": {
90
+ "audio-decode": "^2.1.3",
91
+ "jimp": "^1.6.1",
92
+ "link-preview-js": "^3.0.0",
93
+ "sharp": "*"
94
+ },
95
+ "resolutions": {
96
+ "ajv@npm:^6.12.4": "^6.14.0",
97
+ "basic-ftp": "^5.2.4",
98
+ "brace-expansion@npm:^1.1.7": "^1.1.13",
99
+ "brace-expansion@npm:^2.0.1": "^2.0.3",
100
+ "flatted": "^3.4.2",
101
+ "glob@npm:^10.2.2": "^10.5.0",
102
+ "glob@npm:^10.3.10": "^10.5.0",
103
+ "glob@npm:^10.5.0": "^10.5.0",
104
+ "handlebars": "^4.7.9",
105
+ "ip-address": "^10.1.1",
106
+ "js-yaml@npm:^3.13.1": "^3.14.2",
107
+ "js-yaml@npm:^4.1.0": "^4.1.1",
108
+ "markdown-it": "^14.1.1",
109
+ "minimatch@npm:^3.0.4": "^3.1.5",
110
+ "minimatch@npm:^3.1.2": "^3.1.5",
111
+ "minimatch@npm:^5.0.1": "^5.1.8",
112
+ "minimatch@npm:^9.0.4": "^9.0.9",
113
+ "minimatch@npm:^9.0.5": "^9.0.9",
114
+ "picomatch@npm:^2.0.4": "^2.3.2",
115
+ "picomatch@npm:^2.3.1": "^2.3.2",
116
+ "picomatch@npm:^4.0.0": "^4.0.4",
117
+ "picomatch@npm:^4.0.2": "^4.0.4",
118
+ "socks": "^2.8.8",
119
+ "tar": "^7.5.11",
120
+ "tmp": "^0.2.5",
121
+ "underscore": "^1.13.8",
122
+ "yaml@npm:^2.6.1": "^2.8.4"
123
+ },
124
+ "peerDependenciesMeta": {
125
+ "audio-decode": {
126
+ "optional": true
127
+ },
128
+ "jimp": {
129
+ "optional": true
130
+ },
131
+ "link-preview-js": {
132
+ "optional": true
133
+ }
134
+ },
135
+ "packageManager": "yarn@4.9.2",
136
+ "engines": {
137
+ "node": ">=20.0.0"
138
+ }
139
+ }
140
+ Package Sidebar