@varandas/clash-royale-api
Version:
A Clash Royale API official wrapper for seamless integration with your applications.
70 lines (69 loc) • 1.77 kB
JSON
{
"name": "@varandas/clash-royale-api",
"version": "2.2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/AndreVarandas/clash-royale-api",
"author": "André Varandas <andre.m.varandas@gmail.com>",
"license": "MIT",
"description": "A Clash Royale API official wrapper for seamless integration with your applications.",
"keywords": [
"clash",
"royale",
"api",
"official",
"wrapper",
"game development"
],
"bugs": {
"url": "https://github.com/AndreVarandas/clash-royale-api/issues"
},
"homepage": "https://github.com/AndreVarandas/clash-royale-api#readme",
"scripts": {
"commit": "npx git-cz",
"test": "jest --config jest.config.ts",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.14.0",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"cz-conventional-changelog": "3.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"semantic-release": "^24.2.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.3",
"typescript": "^5.2.2"
},
"dependencies": {
"axios": "^1.6.1"
},
"files": [
"lib/**/*"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
]
}
}