-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 934 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 934 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
{
"name": "pair",
"version": "1.0.0",
"description": "simple pairing code example",
"main": "index.js",
"scripts": {
"start": "pm2 start index.js --name pair-example --node-args \"-r @babel/register\"",
"stop": "pm2 stop pair-example",
"restart": "pm2 restart pair-example",
"dev": "node -r @babel/register index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/IRON-M4N/pair-example.git"
},
"keywords": [],
"author": "IRON-M4N",
"license": "MIT",
"dependencies": {
"async-mutex": "^0.5.0",
"baileys": "git+https://github.com/WhiskeySockets/Baileys.git",
"express": "^4.21.1",
"megajs": "*",
"node-cache": "^5.1.2",
"pino": "^9.4.0",
"pm2": "^5.4.2"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/register": "^7.27.1"
}
}