chore(release): v2.12.0 [skip ci]
This commit is contained in:
+9
-11
@@ -1,3 +1,12 @@
|
|||||||
|
# [2.12.0](https://github.com/ghoshRitesh12/aniwatch-api/compare/v2.11.3...v2.12.0) (2025-04-14)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* **getNextEpisodeSchedule:** add `/anime/:animeId/next-episode-schedule` endpoint ([f5cd341](https://github.com/ghoshRitesh12/aniwatch-api/commit/f5cd3415d8134da1ab1e3b3f8f9be6b5212aa353))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [2.11.3](https://github.com/ghoshRitesh12/aniwatch-api/compare/v2.11.2...v2.11.3) (2025-03-20)
|
## [2.11.3](https://github.com/ghoshRitesh12/aniwatch-api/compare/v2.11.2...v2.11.3) (2025-03-20)
|
||||||
|
|
||||||
|
|
||||||
@@ -24,14 +33,3 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2.10.0](https://github.com/ghoshRitesh12/aniwatch-api/compare/v2.9.0...v2.10.0) (2024-12-24)
|
|
||||||
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
* **cache:** add cacheConfigSetter & cacheControlMiddleware by [#90](https://github.com/ghoshRitesh12/aniwatch-api/issues/90) ([5f1f216](https://github.com/ghoshRitesh12/aniwatch-api/commit/5f1f2167dfe2b99f53743e59c8354a6f8e886566))
|
|
||||||
* **errorHandling:** add error handlers config file ([da19fb7](https://github.com/ghoshRitesh12/aniwatch-api/commit/da19fb7e869c7a9f4007b8bf1439c08e5fe684f7))
|
|
||||||
* use refactored error handlers and cache middlewares ([da6699b](https://github.com/ghoshRitesh12/aniwatch-api/commit/da6699ba224451e0d1a1d2cac569d314ea9c29b3))
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+49
-49
@@ -1,51 +1,51 @@
|
|||||||
{
|
{
|
||||||
"name": "aniwatch-api",
|
"name": "aniwatch-api",
|
||||||
"version": "2.11.3",
|
"version": "2.12.0",
|
||||||
"description": "Node.js API for obtaining anime information from hianime.to",
|
"description": "Node.js API for obtaining anime information from hianime.to",
|
||||||
"main": "src/server.ts",
|
"main": "src/server.ts",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "tsx src/server.ts",
|
"start": "tsx src/server.ts",
|
||||||
"dev": "tsx watch src/server.ts",
|
"dev": "tsx watch src/server.ts",
|
||||||
"build": "tsc -p tsconfig.json",
|
"build": "tsc -p tsconfig.json",
|
||||||
"vercel-build": "echo \"Hello\"",
|
"vercel-build": "echo \"Hello\"",
|
||||||
"prepare": "husky install",
|
"prepare": "husky install",
|
||||||
"test": "vitest run --config vitest.config.ts",
|
"test": "vitest run --config vitest.config.ts",
|
||||||
"healthcheck": "curl -f http://localhost:4000/health",
|
"healthcheck": "curl -f http://localhost:4000/health",
|
||||||
"lint": "prettier --cache --write .",
|
"lint": "prettier --cache --write .",
|
||||||
"lint:ci": "prettier --cache --check ."
|
"lint:ci": "prettier --cache --check ."
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/ghoshRitesh12/aniwatch-api.git"
|
"url": "git+https://github.com/ghoshRitesh12/aniwatch-api.git"
|
||||||
},
|
},
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/ghoshRitesh12/aniwatch-api/issues"
|
"url": "https://github.com/ghoshRitesh12/aniwatch-api/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/ghoshRitesh12/aniwatch-api#readme",
|
"homepage": "https://github.com/ghoshRitesh12/aniwatch-api#readme",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"anime",
|
"anime",
|
||||||
"weeb",
|
"weeb",
|
||||||
"hianime",
|
"hianime",
|
||||||
"aniwatch",
|
"aniwatch",
|
||||||
"scraper"
|
"scraper"
|
||||||
],
|
],
|
||||||
"author": "https://github.com/ghoshRitesh12",
|
"author": "https://github.com/ghoshRitesh12",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@hono/node-server": "^1.13.7",
|
"@hono/node-server": "^1.13.7",
|
||||||
"aniwatch": "^2.18.3",
|
"aniwatch": "^2.18.3",
|
||||||
"dotenv": "^16.4.7",
|
"dotenv": "^16.4.7",
|
||||||
"hono": "^4.6.15",
|
"hono": "^4.6.15",
|
||||||
"hono-rate-limiter": "^0.4.2",
|
"hono-rate-limiter": "^0.4.2",
|
||||||
"ioredis": "^5.4.2"
|
"ioredis": "^5.4.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^22.10.3",
|
"@types/node": "^22.10.3",
|
||||||
"husky": "^9.1.7",
|
"husky": "^9.1.7",
|
||||||
"prettier": "^3.4.2",
|
"prettier": "^3.4.2",
|
||||||
"tsx": "^4.19.2",
|
"tsx": "^4.19.2",
|
||||||
"typescript": "^5.7.2",
|
"typescript": "^5.7.2",
|
||||||
"vitest": "^2.1.8"
|
"vitest": "^2.1.8"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user