forked from orkestral/venom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.48 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
{
"name": "venom-bot",
"version": "2.0.14",
"description": "Venom is a high-performance system developed with JavaScript to create a bot for WhatsApp, support for creating any interaction, such as customer service, media sending, sentence recognition based on artificial intelligence and all types of design architecture for WhatsApp. ",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build:counter": "cd src/lib/counter/ && gulp",
"build:docs": "typedoc && git add docs/*",
"build:jsQR": "cd src/lib/jsQR/ && gulp",
"build:middleware": "cd src/lib/middleware/ && webpack",
"build:venom": "tsc",
"build:wapi": "cd src/lib/wapi/ && webpack",
"build": "npm run build:wapi && npm run build:middleware && npm run build:jsQR && npm run build:counter && npm run build:venom",
"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": "rimraf session dist",
"commit": "cz",
"lint": "npx eslint -c .eslintrc.js --ext .ts src",
"prepublish": "npm run clean && npm run build",
"release": "release-it",
"start": "npm run build:venom & tsc app.ts && node app.js",
"test": "echo \"No tests yet\"",
"watch": "concurrently \"tsc -w\" \"nodemon dist/index.js\""
},
"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/orkestral/venom.git"
},
"keywords": [
"whatsapp",
"javascript",
"bot",
"chat bot",
"bot",
"typescript",
"automatization",
"puppeteer"
],
"author": "Orkestral",
"license": "MIT",
"bugs": {
"url": "https://github.com/orkestral/venom/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/orkestral/venom#readme",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@types/atob": "^2.1.2",
"@types/mime-types": "^2.1.0",
"@types/node": "^13.13.19",
"@types/puppeteer": "^2.1.5",
"@types/sharp": "^0.25.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"commitizen": "^4.2.1",
"concurrently": "^5.1.0",
"conventional-changelog-cli": "^2.1.0",
"copy-webpack-plugin": "^6.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"gulp": "^4.0.2",
"husky": "^4.2.5",
"nodemon": "^2.0.3",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"release-it": "^14.0.3",
"rimraf": "^3.0.2",
"ts-loader": "^7.0.0",
"typedoc": "^0.17.4",
"typescript": "^3.8.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"atob": "^2.1.2",
"axios": "^0.19.2",
"boxen": "^4.2.0",
"chalk": "^4.0.0",
"chrome-launcher": "^0.13.1",
"futoin-hkdf": "^1.3.2",
"latest-version": "^5.1.0",
"mime-types": "^2.1.27",
"puppeteer": "^3.0.0",
"puppeteer-extra": "^3.1.9",
"puppeteer-extra-plugin-stealth": "^2.4.9",
"qrcode-terminal": "^0.12.0",
"rxjs": "^6.6.3",
"sharp": "^0.25.2",
"spinnies": "^0.5.1",
"tree-kill": "^1.2.2"
}
}