-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.64 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "wwebjs-yagami",
"version": "1.7.0-0.3.1",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/fm1randa/yagami"
},
"build": "tsc",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./index.js",
"./wwebjs": "./wwebjs/index.js",
"./helpers": "./helpers/index.js"
},
"files": [
"dist/**/*"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "rm -rf ./dist && tsc -b && echo ✅ wwebjs-yagami built successfully!",
"dev": "nodemon --exec pnpm build",
"pub": "pnpm build && node ./scripts/frank-dist.mjs && pnpm publish ./dist",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.2.3",
"@types/qrcode-terminal": "^0.12.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"fs-extra": "^11.1.1",
"nodemon": "^2.0.20",
"prettier": "3.0.1",
"typescript": "5.1.6"
},
"dependencies": {
"dotenv": "16.3.1",
"mongoose": "7.4.1",
"qrcode-terminal": "0.12.0",
"whatsapp-web.js": "github:fm1randa/whatsapp-web.js",
"winston": "3.10.0"
},
"nodemonConfig": {
"ignore": [
"dist",
"node_modules"
],
"watch": [
"src"
],
"ext": "ts"
}
}