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
Ritesh Ghosh 46f688ac12 Aniwatch API Version 2 (#66)
BREAKING CHANGE:

* chore: remove files that are not necessary for api v2

* test: update existing tests to use  pkg

* feat: organized aniwatch api envs and add more info about them

* feat: update tsconfig to include strict noUnsed params

* feat(api homepage): revamp api home page

* feat: update wani kuni image

* feat: add dot img

* feat: use hono cors

* feat: use hono rate limiter

* build: remove unnecessary deps, add ones needed and update description

* feat: add hianime routes and their handlers

* feat: update vercel deployment file

* docs: update logo and scraper docs, add envs section

* feat: update main server file

* feat: update peronal deployments caution section
2024-10-06 01:13:23 +05:30

47 lines
1.2 KiB
JSON

{
"name": "aniwatch-api",
"version": "1.40.0",
"description": "Node.js API for obtaining anime information from hianime.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": "husky install",
"test": "vitest run --config vitest.config.ts",
"healthcheck": "curl -f http://localhost:4000/health"
},
"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",
"hianime",
"aniwatch",
"scraper"
],
"author": "https://github.com/ghoshRitesh12",
"license": "MIT",
"dependencies": {
"@hono/node-server": "^1.13.1",
"aniwatch": "^2.4.1",
"dotenv": "^16.4.5",
"hono": "^4.6.3",
"hono-rate-limiter": "^0.4.0"
},
"devDependencies": {
"@types/node": "^22.7.4",
"husky": "^8.0.3",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"vitest": "^2.1.2"
}
}