-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 loc) · 1.18 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
{
"name": "@wppconnect/wa-proto",
"version": "1.1.5",
"description": "Protobuf files from WhatsApp WEB",
"license": "Apache-2.0",
"author": {
"name": "Cleiton Costa",
"url": "https://github.com/icleitoncosta"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run fetch && npm run compile",
"compile": "npm run compile:js && npm run compile:ts",
"compile:js": "pbjs -t static-module --sparse -w commonjs -o ./dist/index.js ./WAProto.proto",
"compile:ts": "pbts -o ./dist/index.d.ts ./dist/index.js",
"fetch": "node index.js",
"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",
"release": "release-it"
},
"dependencies": {
"long": "^5.2.3",
"protobufjs": "^7.4.0"
},
"devDependencies": {
"acorn": "^8.14.0",
"acorn-walk": "^8.3.4",
"conventional-changelog-cli": "^4.1.0",
"protobufjs-cli": "^1.1.3",
"release-it": "^17.10.0",
"request": "^2.88.2",
"request-promise-core": "^1.1.4",
"request-promise-native": "^1.0.9"
}
}