forked from wppconnect-team/wppconnect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 4.66 KB
/
Copy pathpackage.json
File metadata and controls
139 lines (139 loc) · 4.66 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "@wppconnect-team/wppconnect",
"version": "1.8.5",
"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:client": "tsc",
"build:wapi": "cd src/lib/wapi/ && webpack",
"build": "npm run build:wapi && 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",
"docs:build": "npm run docs:clean && npm run docs:fix && typedoc && npm run docs:copy-images",
"docs:clean": "shx rm -rf api-docs",
"docs:copy-images": "shx cp -R ./img ./api-docs",
"docs:fix": "ts-node ./docs/layouts/fix-docs.ts",
"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": "husky install && 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 -d source-map\" \"npm run build:client -- -w --sourceMap\""
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"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": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"@babel/eslint-plugin": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.1.4",
"@commitlint/cz-commitlint": "^12.1.4",
"@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/rimraf": "^3.0.0",
"@types/sharp": "^0.28.0",
"@types/shelljs": "^0.8.8",
"@types/tmp": "^0.2.0",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"@wppconnect-team/loader": "^1.0.5",
"babel-loader": "^8.2.2",
"commitizen": "^4.2.3",
"concurrently": "^6.0.0",
"conventional-changelog-cli": "^2.1.1",
"copy-webpack-plugin": "^9.0.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"gulp": "^4.0.2",
"husky": "^7.0.0",
"license-check-and-add": "^4.0.2",
"mocha": "^9.0.0",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"regenerator-runtime": "^0.13.7",
"release-it": "^14.4.1",
"shx": "^0.3.3",
"ts-loader": "^9.0.0",
"ts-node": "^10.0.0",
"typedoc": "^0.21.0",
"typedoc-plugin-pages": "^1.1.0",
"typescript": "^4.3.5",
"webpack": "^5.45.1",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"@wppconnect/wa-version": "^1.1.1",
"atob": "^2.1.2",
"axios": "^0.21.1",
"boxen": "^5.0.0",
"catch-exit": "^1.1.0",
"chalk": "^4.0.0",
"chrome-launcher": "^0.14.0",
"execa": "^5.0.0",
"fsevents": "^2.3.1",
"futoin-hkdf": "^1.3.2",
"latest-version": "^5.1.0",
"lookpath": "^1.2.0",
"mime-types": "^2.1.28",
"puppeteer": "5.4.1",
"puppeteer-extra": "^3.1.18",
"puppeteer-extra-plugin-stealth": "^2.7.8",
"qrcode-terminal": "^0.12.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"sanitize-filename": "^1.6.3",
"sharp": "^0.28.0",
"tmp": "^0.2.1",
"tree-kill": "^1.2.2",
"winston": "^3.3.3"
},
"optionalDependencies": {
"fsevents": "^2.3.1"
},
"directories": {
"doc": "docs",
"example": "examples"
}
}