forked from danielcardeenas/sulla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) Β· 2.38 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
{
"name": "sulla",
"version": "2.4.0",
"description": "Javascript whatsapp framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "npm run build:sulla & tsc app.ts && node --trace-warnings app.js",
"build": "npm run build:wapi && npm run build:middleware && npm run build:jsQR && tsc",
"build:sulla": "tsc",
"build:wapi": "cd src/lib/wapi/ && webpack",
"build:middleware": "cd src/lib/middleware/ && webpack",
"build:jsQR": "cd src/lib/jsQR/ && gulp",
"build:docs": "typedoc && git add docs/*",
"watch": "concurrently \"tsc -w\" \"nodemon dist/index.js\"",
"clean": "rm -rf session && rm -rf dist",
"test": "echo \"No tests yet\"",
"changelog": "auto-changelog -p && git add CHANGELOG.md",
"release": "read -p 'GITHUB_TOKEN: ' GITHUB_TOKEN && export GITHUB_TOKEN=$GITHUB_TOKEN && release-it"
},
"release-it": {
"github": {
"release": true
}
},
"auto-changelog": {
"commitLimit": false
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielcardeenas/sulla.git"
},
"keywords": [
"whatsapp",
"javascript",
"bot",
"typescript",
"automatization",
"puppeteer"
],
"author": "Daniel Cardenas",
"license": "ISC",
"bugs": {
"url": "https://github.com/danielcardeenas/sulla/issues"
},
"homepage": "https://github.com/danielcardeenas/sulla#readme",
"devDependencies": {
"@types/node": "^15.12.4",
"@types/puppeteer": "^5.4.3",
"@types/sharp": "^0.27.1",
"auto-changelog": "^2.2.1",
"concurrently": "^5.3.0",
"copy-webpack-plugin": "^7.0.0",
"gulp": "^4.0.2",
"husky": "^5.0.9",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"release-it": "^14.4.0",
"ts-loader": "^8.0.17",
"typedoc": "^0.20.25",
"typescript": "^4.1.5",
"webpack": "^5.22.0",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"boxen": "^5.0.0",
"chalk": "^4.1.0",
"chrome-launcher": "^0.13.4",
"file-type": "^16.2.0",
"futoin-hkdf": "^1.3.3",
"latest-version": "^5.1.0",
"puppeteer": "^5.3.1",
"puppeteer-extra": "^3.1.17",
"puppeteer-extra-plugin-stealth": "^2.7.5",
"qrcode-terminal": "^0.12.0",
"rxjs": "^6.6.3",
"sharp": "^0.27.1",
"spinnies": "^0.5.1"
}
}