-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.32 KB
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
57
58
59
{
"name": "@animegarden/scraper",
"version": "0.5.2",
"description": "A scraper for AnimeGarden.",
"keywords": [
"dmhy",
"scraper",
"animegarden",
"animespace"
],
"homepage": "https://github.com/yjl9903/AnimeGarden#readme",
"bugs": {
"url": "https://github.com/yjl9903/AnimeGarden/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yjl9903/AnimeGarden.git"
},
"license": "MIT",
"author": "XLor",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"format": "prettier --write src/**/*.ts test/**/*.ts",
"test": "vitest",
"test:ci": "vitest --run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@animegarden/client": "workspace:*",
"anipar": "workspace:*",
"jsdom": "^26.1.0",
"parse-torrent": "^11.0.18",
"rss-parser": "^3.13.0",
"zod": "^3.25.31"
},
"devDependencies": {
"@animegarden/shared": "workspace:*",
"@types/jsdom": "^21.1.7",
"@types/parse-torrent": "^5.8.7"
},
"engines": {
"node": ">=v18.16.0"
}
}