This repository has been archived on 2026-07-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
aniwatch-api/package.json
T
2025-08-26 03:54:56 +00:00

58 lines
1.7 KiB
JSON

{
"name": "aniwatch-api",
"version": "2.18.1",
"description": "NodeJS API for obtaining anime data from hianimez.to",
"main": "dist/src/server.js",
"type": "module",
"scripts": {
"start": "node dist/src/server.js",
"dev": "tsx watch src/server.ts",
"build": "tsc",
"buildnstart": "tsc && node dist/src/server.js",
"vercel-build": "echo hello",
"prepare": "node .husky/install.mjs",
"test": "vitest run --config vitest.config.ts",
"healthcheck": "curl -f http://localhost:4000/health",
"typecheck": "tsc --noEmit",
"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.2",
"aniwatch": "^2.24.3",
"dotenv": "^16.5.0",
"envalid": "^8.0.0",
"hono": "^4.7.10",
"hono-rate-limiter": "^0.4.2",
"ioredis": "^5.6.1",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0"
},
"devDependencies": {
"@types/node": "^22.15.21",
"husky": "^9.1.7",
"prettier": "^3.5.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.1.4"
}
}