forked from open-wa/wa-automate-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.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
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
{
"name": "sulla-hotfix",
"version": "1.8.30",
"description": "Javascript whatsapp framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist/ && tsc && npm run build:middleware && npm run build:lib",
"build:skipmid": "tsc && npm run build:lib",
"build:lib": "ts-node prebuild.ts",
"build:middleware": "tsc --out src/lib/middleware.js src/middleware/middleware.ts --module amd",
"watch": "npm run build && tsc-watch ./src/index.ts --outDir ./dist --onSuccess \"node ./dist/index.js\" --onFailure \"echo Error while compiling\" --compiler typescript/bin/tsc",
"clean": "rm -rf session && rm -rf dist",
"clean:full": "rm -rf node_modules && npm run clean",
"precise-commits": "precise-commits",
"test": "echo \"No tests yet\"",
"release": "release-it",
"release-ci": "release-it --ci",
"release-image": "node release-image.js"
},
"husky": {
"hooks": {
"pre-commit": ""
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/smashah/sulla.git"
},
"keywords": [
"whatsapp",
"javascript",
"bot",
"typescript",
"automatization",
"puppeteer"
],
"author": "Mohammed Shah <@smashah>",
"license": "ISC",
"bugs": {
"url": "https://github.com/smashah/sulla/issues"
},
"homepage": "https://github.com/smashah/sulla#readme",
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@types/changelog-parser": "^2.7.1",
"@types/command-line-args": "^5.0.0",
"@types/line-reader": "0.0.28",
"@types/marked": "^0.7.2",
"@types/node": "^13.7.7",
"@types/puppeteer": "^2.0.1",
"@types/shelljs": "^0.8.5",
"auto-changelog": "^1.16.2",
"changelog-parser": "^2.8.0",
"command-line-args": "^5.1.1",
"husky": "^4.2.3",
"line-reader": "^0.4.0",
"marked": "^0.8.0",
"precise-commits": "^1.0.2",
"prettier": "^2.0.1",
"release-it": "^13.0.1",
"ts-node": "^8.4.1",
"tsc-watch": "^4.0.0",
"typedoc": "^0.17.0",
"typescript": "^3.6.4"
},
"dependencies": {
"@types/sharp": "^0.24.0",
"atob": "^2.1.2",
"axios": "^0.19.1",
"chrome-launcher": "^0.13.0",
"death": "^1.1.0",
"eventemitter2": "^6.0.0",
"futoin-hkdf": "^1.2.1",
"image-type": "^4.1.0",
"lodash.uniq": "^4.5.0",
"ora": "^4.0.2",
"puppeteer": "^2.1.1",
"puppeteer-extra": "^3.1.9",
"puppeteer-extra-plugin-devtools": "^2.2.8",
"puppeteer-extra-plugin-stealth": "^2.4.9",
"qrcode-terminal": "^0.12.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"rxjs": "^6.5.3",
"sharp": "^0.25.1",
"shelljs": "^0.8.3"
}
}