-
-
Notifications
You must be signed in to change notification settings - Fork 178
/
package.json
51 lines (51 loc) · 1.33 KB
/
package.json
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.2.1",
"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.4.1",
"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"
}
}