-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
31 lines (31 loc) · 951 Bytes
/
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
{
"name": "whatsapp-web-node",
"version": "0.0.1",
"description": "WhatsApp Web for NodeJS",
"main": "dist/index.js",
"author": "Mochamad Arifin",
"license": "MIT",
"scripts": {
"dist": "tsc -p tsconfig.dist.json",
"postdist": "cp etc/whatsapp_pb.js dist/",
"dev": "tsc-watch -p tsconfig.dev.json --onSuccess \"node build-dev/dev.js\" --onFirstSuccess \"cp etc/whatsapp_pb.js build-dev/\"",
"test": "tsc",
"posttest": "node build-test/test/test.js",
"test-watch": "tsc-watch --onSuccess \"node build-test/test/test.js\"",
"clean": "rm -rf dist build-*"
},
"dependencies": {
"curve25519-n": "^1.5.0",
"futoin-hkdf": "^1.3.2",
"google-protobuf": "^3.12.0",
"qrcode-terminal": "^0.12.0",
"ws": "^7.4.6"
},
"devDependencies": {
"@types/google-protobuf": "^3.7.2",
"@types/ws": "^7.2.4",
"module-alias": "^2.2.2",
"tsc-watch": "^4.2.3",
"typescript": "^3.8.3"
}
}