-
Notifications
You must be signed in to change notification settings - Fork 396
/
Copy pathpackage.json
53 lines (53 loc) · 1.2 KB
/
package.json
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
{
"name": "xstro",
"version": "1.7.11",
"description": "A simple WhatsApp bot built by AstroX11.",
"main": "index.js",
"type": "module",
"imports": {
"#src": "./src/index.js",
"#config": "./config.js",
"#libary": "./resources/lib/index.js"
},
"scripts": {
"start": "node index",
"postinstall": "yarn --cwd resources install",
"build": "yarn --cwd resources build",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"files": [
"lib",
"plugins",
"sql"
],
"license": "MIT",
"keywords": [
"whatsapp-bot",
"astrox11",
"baileys"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AstroX11/xstro.git"
},
"bugs": {
"url": "https://github.com/AstroX11/xstro/issues"
},
"homepage": "https://github.com/AstroX11/xstro#readme",
"author": "AstroX11 <[email protected]>",
"devDependencies": {
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",
"prettier": "^3.1.0"
},
"dependencies": {
"node-webpmux": "^3.2.0",
"sharp": "^0.33.5",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"xstro-utils": "^1.0.8"
},
"packageManager": "[email protected]"
}