apiroyale
Version:
A Node.js library to interact with the Clash Royale API
52 lines (51 loc) • 1.57 kB
JSON
{
"author": "DTrombett",
"description": "A Node.js library to interact with the Clash Royale API",
"homepage": "https://github.com/DTrombett/apiroyale#readme",
"license": "MIT",
"main": "dist/index.js",
"name": "apiroyale",
"types": "dist/index.d.ts",
"version": "2.0.0",
"keywords": [
"nodejs",
"api",
"clash-royale-api",
"clashroyale"
],
"scripts": {
"build": "tsup",
"lint": "eslint src --fix && prettier --write src/**/*.ts",
"precommit": "npm run lint",
"release:major": "npm test && npm run build && npm version major -m \"chore(release): %s\" && git push && npm publish",
"release:minor": "npm test && npm run build && npm version minor -m \"chore(release): %s\" && git push && npm publish",
"release:patch": "npm test && npm run build && npm version patch -m \"chore(release): %s\" && git push && npm publish",
"start": "npm run build && node .",
"test": "tsc --noEmit && eslint src"
},
"engines": {
"node": ">=16.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/DTrombett/apiroyale.git"
},
"bugs": {
"url": "https://github.com/DTrombett/apiroyale/issues"
},
"dependencies": {
"@discordjs/collection": "^0.5.0",
"royale-api-types": "^1.0.0"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/node": "^16.11.28",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.14.0",
"husky": "^7.0.4",
"prettier": "^2.6.2",
"tsup": "^5.12.6",
"typescript": "^4.6.3"
}
}