@nguyennhuy/zalo-api
Version:
Unofficial Zalo API for JavaScript
79 lines (78 loc) • 2.26 kB
JSON
{
"name": "@nguyennhuy/zalo-api",
"version": "0.1.21",
"description": "Unofficial Zalo API for JavaScript",
"main": "dist/index.js",
"type": "module",
"exports": {
".": {
"require": "./dist/cjs/index.cjs",
"types": "./index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"prebuild": "bun run scripts/buildAPI.js",
"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 .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky"
},
"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, JustKemForFun",
"license": "MIT",
"dependencies": {
"crypto-js": "^4.2.0",
"form-data": "^4.0.4",
"json-bigint": "^1.0.0",
"pako": "^2.1.0",
"semver": "^7.6.3",
"spark-md5": "^3.0.2",
"tough-cookie": "^5.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@rollup/plugin-typescript": "^12.1.0",
"@types/bun": "^1.1.14",
"@types/crypto-js": "^4.2.2",
"@types/json-bigint": "^1.0.4",
"@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",
"eslint": "^9.34.0",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"rollup": "^4.24.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.41.0"
},
"lint-staged": {
"*.{js,ts}": "bunx eslint"
}
}