-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
56 lines (56 loc) · 1.24 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
52
53
54
55
56
{
"name": "aniwatch",
"version": "2.18.1",
"description": "📦 A scraper package serving anime information from hianime.to",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"type": "module",
"scripts": {
"lint": "tsc",
"build": "tsup",
"ci": "tsc && pnpm test && tsup",
"test": "vitest run --config vitest.config.ts",
"prepare": "node .husky/install.mjs"
},
"author": {
"name": "Ritesh Ghosh",
"url": "https://github.com/ghoshRitesh12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ghoshRitesh12/aniwatch.git"
},
"bugs": {
"url": "https://github.com/ghoshRitesh12/aniwatch/issues"
},
"homepage": "https://github.com/ghoshRitesh12/aniwatch#readme",
"keywords": [
"anime",
"hianime",
"aniwatch",
"hianime.to",
"aniwatch.to",
"scraper",
"package"
],
"dependencies": {
"axios": "^1.7.9",
"cheerio": "1.0.0",
"crypto-js": "^4.2.0"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/node": "^22.10.2",
"husky": "^9.1.4",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"files": [
"dist",
"LICENSE",
"package.json"
]
}