-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
64 lines (64 loc) · 1.75 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
{
"name": "zca-js",
"version": "2.0.0-alpha.5",
"description": "Unofficial Zalo API for JavaScript",
"main": "dist/index.js",
"type": "module",
"exports": {
".": {
"require": "./dist/cjs/index.cjs",
"default": "./dist/index.js",
"types": "./index.d.ts"
}
},
"scripts": {
"build:clean": "rimraf dist",
"build:esm": "tsc",
"build:cjs": "rollup -c rollup.config.js",
"build": "bun run build:clean && bun run build:esm && bun run build:cjs",
"test:feat": "bun run test/feat.ts",
"prettier": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/RFS-ADRENO/zca-js.git"
},
"homepage": "https://github.com/RFS-ADRENO/zca-js",
"bugs": {
"url": "https://github.com/RFS-ADRENO/zca-js/issues"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"chatbot",
"zalo",
"api"
],
"author": "RFS-ADRENO, truong9c2208",
"license": "MIT",
"dependencies": {
"crypto-js": "^4.2.0",
"form-data": "^4.0.0",
"pako": "^2.1.0",
"semver": "^7.6.3",
"sharp": "^0.33.4",
"spark-md5": "^3.0.2",
"tough-cookie": "^5.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.0",
"@types/bun": "^1.1.14",
"@types/crypto-js": "^4.2.2",
"@types/node": "^20.14.10",
"@types/pako": "^2.0.3",
"@types/semver": "^7.5.8",
"@types/spark-md5": "^3.0.4",
"@types/ws": "^8.5.11",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"rollup": "^4.24.0",
"typescript": "^5.5.3"
}
}