aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 2c41c185c8d8bce71057704b7f2c84f4c4fbc6a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
  "name": "aniwatch-api",
  "version": "2.8.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",
    "lint": "prettier --cache --write .",
    "lint:ci": "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",
    "hianime",
    "aniwatch",
    "scraper"
  ],
  "author": "https://github.com/ghoshRitesh12",
  "license": "MIT",
  "dependencies": {
    "@hono/node-server": "^1.13.1",
    "aniwatch": "^2.17.0",
    "dotenv": "^16.4.5",
    "hono": "^4.6.3",
    "hono-rate-limiter": "^0.4.0",
    "ioredis": "^5.4.1"
  },
  "devDependencies": {
    "@types/node": "^22.7.4",
    "husky": "^8.0.3",
    "prettier": "^3.3.3",
    "tsx": "^4.19.1",
    "typescript": "^5.6.2",
    "vitest": "^2.1.2"
  }
}