evolution-bridge
Version:
Biblioteca TypeScript para integração com a API do Evolution
63 lines (62 loc) • 1.84 kB
JSON
{
"name": "evolution-bridge",
"version": "2.2.11",
"description": "Biblioteca TypeScript para integração com a API do Evolution",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"release:check": "git diff --exit-code",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"release": "npm run test && npm run lint && npm run build && npm run release:patch"
},
"keywords": [
"evolution",
"whatsapp",
"api",
"typescript"
],
"author": "Evolution Bridge Team",
"license": "MIT",
"peerDependencies": {
"axios": "^1.8.4"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.14.1",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^10.1.2",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.2",
"typescript": "^5.8.3"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/LLBI-solucoes/evolution-bridge.git"
},
"bugs": {
"url": "https://github.com/LLBI-solucoes/evolution-bridge/issues"
},
"homepage": "https://github.com/LLBI-solucoes/evolution-bridge#readme",
"engines": {
"node": ">=14.0.0"
}
}