forked from wppconnect-team/wppconnect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 4.3 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@wppconnect-team/wppconnect",
"version": "1.2.4",
"description": "WPPConnect is an open source project developed by the JavaScript community with the aim of exporting functions from WhatsApp Web to the node, which can be used to support the creation of any interaction, such as customer service, media sending, intelligence recognition based on phrases artificial and many other things, use your imagination... 😀🤔💭",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build:docs": "typedoc && git add docs/*",
"build:jsQR": "cd src/lib/jsQR/ && gulp",
"build:client": "tsc",
"build:wapi": "cd src/lib/wapi/ && webpack",
"build": "npm run build:wapi && npm run build:jsQR && npm run build:client",
"changelog:last": "conventional-changelog -p angular -r 2",
"changelog:preview": "conventional-changelog -p angular -u",
"changelog:update": "conventional-changelog -p angular -i CHANGELOG.md -s",
"clean": "shx rm -rf session dist",
"commit": "cz",
"fix:doc-theme": "shx cp ./node_modules/typedoc-default-themes/bin/default/partials/type.hbs ./node_modules/typedoc-plugin-pages/dist/theme/v2/partials/type.hbs",
"generate-api-docs": "npm run fix:doc-theme && typedoc",
"license:add": "license-check-and-add add",
"license:check": "license-check-and-add check",
"lint:js": "npx eslint -c .eslintrc.js --ext .js src",
"lint:ts": "npx eslint -c .eslintrc.js --ext .ts src",
"lint": "npm run lint:ts && npm run lint:js",
"prepare": "npm run clean && npm run build",
"release": "release-it",
"start": "npm run build:client && tsc app.ts && node app.js",
"test": "mocha -r ts-node/register src/tests/**/*.test.ts",
"watch": "concurrently \"npm run build:wapi -- --mode=development -w\" \"npm run build:client -- -w --sourceMap\""
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/wppconnect-team/wppconnect.git"
},
"keywords": [
"whatsapp",
"javascript",
"bot",
"chat bot",
"bot",
"typescript",
"automatization",
"puppeteer"
],
"author": "wppconnect-team",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/wppconnect-team/wppconnect/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/wppconnect-team/wppconnect#readme",
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-angular": "^12.0.1",
"@types/atob": "^2.1.2",
"@types/mime-types": "^2.1.0",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.22",
"@types/puppeteer": "^5.4.3",
"@types/sharp": "^0.27.3",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"@wppconnect-team/loader": "^1.0.0",
"commitizen": "^4.2.3",
"concurrently": "^6.0.0",
"conventional-changelog-cli": "^2.1.1",
"copy-webpack-plugin": "^8.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"gulp": "^4.0.2",
"husky": "6.0.0",
"license-check-and-add": "^4.0.2",
"mocha": "^8.3.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"release-it": "^14.5.1",
"shx": "^0.3.3",
"ts-loader": "^8.0.17",
"ts-node": "^9.1.1",
"typedoc": "^0.20.28",
"typedoc-plugin-pages": "^1.1.0",
"typescript": "^4.2.2",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"atob": "^2.1.2",
"axios": "^0.21.1",
"boxen": "^5.0.0",
"chalk": "^4.0.0",
"chrome-launcher": "^0.13.1",
"fsevents": "^2.3.1",
"futoin-hkdf": "^1.3.2",
"latest-version": "^5.1.0",
"mime-types": "^2.1.28",
"puppeteer": "^5.5.0",
"puppeteer-extra": "^3.1.16",
"puppeteer-extra-plugin-stealth": "^2.6.6",
"qrcode-terminal": "^0.12.0",
"sharp": "^0.28.0",
"tree-kill": "^1.2.2",
"winston": "^3.3.3"
},
"optionalDependencies": {
"fsevents": "^2.3.1"
},
"directories": {
"doc": "docs",
"example": "examples"
}
}