royale-api-types
Version:
Types for the Clash Royale API
51 lines (50 loc) • 1.54 kB
JSON
{
"name": "royale-api-types",
"version": "1.1.0",
"description": "Types for the Clash Royale API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"lint": "eslint src --fix && prettier --write src/**/*.ts",
"precommit": "npm run lint",
"prepare": "husky install",
"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": "git+https://github.com/DTrombett/royale-api-types.git"
},
"keywords": [
"nodejs",
"api",
"typescript",
"typings",
"clash-royale-api",
"clashroyale"
],
"author": "DTrombett",
"license": "MIT",
"bugs": {
"url": "https://github.com/DTrombett/royale-api-types/issues"
},
"homepage": "https://github.com/DTrombett/royale-api-types#readme",
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/node": "^17.0.27",
"@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"
}
}