-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 2.71 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
{
"name": "@oxidezap/baileyrs",
"type": "module",
"version": "0.0.26",
"description": "A Rust-powered WhatsApp Web library for JavaScript, with a Baileys-compatible API",
"keywords": [
"whatsapp",
"whatsapp-web",
"whatsapp-api",
"baileys",
"rust",
"wasm",
"webassembly",
"automation"
],
"homepage": "https://github.com/oxidezap/baileyrs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/oxidezap/baileyrs.git"
},
"bugs": {
"url": "https://github.com/oxidezap/baileyrs/issues"
},
"license": "MIT",
"author": "João Lucas <jlucaso@hotmail.com>",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./logger": {
"types": "./lib/Utils/logger.d.ts",
"default": "./lib/Utils/logger.js"
},
"./lib/*": {
"types": "./lib/*.d.ts",
"default": "./lib/*.js"
},
"./lib/*.js": {
"types": "./lib/*.d.ts",
"default": "./lib/*.js"
}
},
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc -P tsconfig.build.json && tsc-esm-fix --tsconfig=tsconfig.build.json --ext=.js",
"benchmark": "node ./Example/benchmark.ts",
"example": "node ./Example/example.ts",
"format": "oxfmt src Example",
"format:check": "oxfmt --check src Example",
"lint": "tsc && oxlint",
"lint:fix": "oxlint --fix && oxfmt src Example",
"prepack": "npm run build",
"prepare": "npm run build",
"test": "node --experimental-transform-types --experimental-test-isolation=none --test 'src/**/*.test.ts'",
"test:e2e": "NODE_TLS_REJECT_UNAUTHORIZED=0 ADV_SECRET_KEY=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= SOCKET_URL=wss://127.0.0.1:8080/ws/chat node --experimental-transform-types --experimental-test-isolation=none --test 'src/**/*.test-e2e.ts'"
},
"dependencies": {
"pino": "^9.6",
"whatsapp-rust-bridge": "0.6.0-alpha.36"
},
"devDependencies": {
"@types/node": "^22",
"baileys": "7.0.0-rc11",
"jimp": "^1.6.0",
"music-metadata": "^11.12.3",
"oxfmt": "^0.45.0",
"oxlint": "1.60.0",
"pino-pretty": "^13.1.3",
"tsc-esm-fix": "^3.1.2",
"typescript": "^5.8.2"
},
"peerDependencies": {
"audio-decode": "^2.1.3",
"jimp": "^1.6.0",
"link-preview-js": "^3.0.0",
"sharp": "*"
},
"peerDependenciesMeta": {
"audio-decode": {
"optional": true
},
"jimp": {
"optional": true
},
"link-preview-js": {
"optional": true
},
"sharp": {
"optional": true
}
},
"overrides": {
"protobufjs": "^7.5.5"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
}
}