agora-rest-client
Version:
Node.js REST client for Agora
82 lines (81 loc) • 2.35 kB
JSON
{
"name": "agora-rest-client",
"version": "0.1.0",
"description": "Node.js REST client for Agora",
"homepage": "https://github.com/AgoraIO-Community/agora-rest-client-nodejs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/AgoraIO-Community/agora-rest-client-nodejs.git"
},
"scripts": {
"dev": "tsc -w",
"build": "rimraf ./dist && tsc --project tsconfig.build.json",
"example:cloudrecording": "ts-node ./examples/cloudrecording/index.ts",
"test": "vitest",
"test:watch": "vitest --watch",
"lint": "eslint --cache .",
"lint:fix": "npm run lint --fix",
"prettier": "prettier . --write --ignore-unknown"
},
"author": "Agora",
"license": "MIT",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"keywords": [
"agora",
"sdk",
"nodejs",
"rest-client",
"javascript",
"typescript"
],
"bugs": {
"url": "https://agora-ticket.agora.io",
"email": "support@agora.io"
},
"devDependencies": {
"@types/node": "^18.11.11",
"@types/node-fetch": "^2.6.9",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"commander": "^12.1.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"lint-staged": "^15.2.2",
"node-fetch": "^2.7.0",
"pino": "^9.1.0",
"pino-pretty": "^13.0.0",
"prettier": "3.2.5",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2",
"typescript": "~5.3.0",
"vitest": "^1.6.0",
"yorkie": "^2.0.0"
},
"dependencies": {
"node-fetch": "^2.7.0",
"pino": "^9.1.0",
"pino-pretty": "^13.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --cache --fix",
"git add"
],
"**/*": "prettier --write --ignore-unknown"
}
}