From 2ba6b0fad7ef974ca83c3e76538e5f139ad142ad Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 11 May 2025 19:55:55 +0000 Subject: [PATCH] chore(release): v2.14.0 [skip ci] --- CHANGELOG.md | 14 +++-- package.json | 112 ++++++++++++++++----------------- scripts/format-package-json.js | 0 3 files changed, 66 insertions(+), 60 deletions(-) mode change 100644 => 100755 scripts/format-package-json.js diff --git a/CHANGELOG.md b/CHANGELOG.md index 7142243..9c926a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# [2.14.0](https://github.com/ghoshRitesh12/aniwatch-api/compare/v2.13.12...v2.14.0) (2025-05-11) + + +### Features + +* add format-package-json script for JSON formatting ([9bea3e5](https://github.com/ghoshRitesh12/aniwatch-api/commit/9bea3e51ca2fbab6515272735564ca34f19d2b59)) +* implement preCommit script for formatting package.json ([7a87c7f](https://github.com/ghoshRitesh12/aniwatch-api/commit/7a87c7fa325b03df0e4e4924bad9eb17e3db3d12)) + + + ## [2.13.12](https://github.com/ghoshRitesh12/aniwatch-api/compare/v2.13.11...v2.13.12) (2025-05-11) @@ -14,7 +24,3 @@ -## [2.13.8](https://github.com/ghoshRitesh12/aniwatch-api/compare/v2.13.7...v2.13.8) (2025-05-11) - - - diff --git a/package.json b/package.json index ffe7bc9..ef1e451 100644 --- a/package.json +++ b/package.json @@ -1,57 +1,57 @@ { - "name": "aniwatch-api", - "version": "2.13.12", - "description": "Node.js API for obtaining anime information from hianimez.to", - "main": "src/server.ts", - "type": "module", - "scripts": { - "start": "tsx src/server.ts", - "dev": "tsx watch src/server.ts", - "build": "tsc -p tsconfig.json", - "vercel-build": "echo \"Hello\"", - "prepare": "node .husky/install.mjs", - "test": "vitest run --config vitest.config.ts", - "healthcheck": "curl -f http://localhost:4000/health", - "lint": "tsc", - "format": "prettier --cache --write .", - "format:check": "prettier --cache --check ." - }, - "repository": { - "type": "git", - "url": "git+https://github.com/ghoshRitesh12/aniwatch-api.git" - }, - "bugs": { - "url": "https://github.com/ghoshRitesh12/aniwatch-api/issues" - }, - "homepage": "https://github.com/ghoshRitesh12/aniwatch-api#readme", - "keywords": [ - "anime", - "weeb", - "scraper", - "zoro.to", - "aniwatch.to", - "hianime.to", - "hianimez.to" - ], - "author": "https://github.com/ghoshRitesh12", - "license": "MIT", - "dependencies": { - "@hono/node-server": "^1.14.1", - "aniwatch": "^2.22.0", - "dotenv": "^16.5.0", - "envalid": "^8.0.0", - "hono": "^4.7.9", - "hono-rate-limiter": "^0.4.2", - "ioredis": "^5.6.1", - "pino": "^9.6.0", - "tsx": "^4.19.4" - }, - "devDependencies": { - "@types/node": "^22.15.17", - "husky": "^9.1.7", - "pino-pretty": "^13.0.0", - "prettier": "^3.5.3", - "typescript": "^5.8.3", - "vitest": "^3.1.3" - } -} \ No newline at end of file + "name": "aniwatch-api", + "version": "2.14.0", + "description": "Node.js API for obtaining anime information from hianimez.to", + "main": "src/server.ts", + "type": "module", + "scripts": { + "start": "tsx src/server.ts", + "dev": "tsx watch src/server.ts", + "build": "tsc -p tsconfig.json", + "vercel-build": "echo \"Hello\"", + "prepare": "node .husky/install.mjs", + "test": "vitest run --config vitest.config.ts", + "healthcheck": "curl -f http://localhost:4000/health", + "lint": "tsc", + "format": "prettier --cache --write .", + "format:check": "prettier --cache --check ." + }, + "repository": { + "type": "git", + "url": "git+https://github.com/ghoshRitesh12/aniwatch-api.git" + }, + "bugs": { + "url": "https://github.com/ghoshRitesh12/aniwatch-api/issues" + }, + "homepage": "https://github.com/ghoshRitesh12/aniwatch-api#readme", + "keywords": [ + "anime", + "weeb", + "scraper", + "zoro.to", + "aniwatch.to", + "hianime.to", + "hianimez.to" + ], + "author": "https://github.com/ghoshRitesh12", + "license": "MIT", + "dependencies": { + "@hono/node-server": "^1.14.1", + "aniwatch": "^2.22.0", + "dotenv": "^16.5.0", + "envalid": "^8.0.0", + "hono": "^4.7.9", + "hono-rate-limiter": "^0.4.2", + "ioredis": "^5.6.1", + "pino": "^9.6.0", + "tsx": "^4.19.4" + }, + "devDependencies": { + "@types/node": "^22.15.17", + "husky": "^9.1.7", + "pino-pretty": "^13.0.0", + "prettier": "^3.5.3", + "typescript": "^5.8.3", + "vitest": "^3.1.3" + } +} diff --git a/scripts/format-package-json.js b/scripts/format-package-json.js old mode 100644 new mode 100755