-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.47 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
60
61
62
63
64
65
{
"name": "@animegarden/manager",
"version": "0.5.2",
"description": "Server manager CLI for AnimeGarden.",
"keywords": [
"dmhy",
"scraper",
"animegarden",
"animespace",
"CLI",
"breadc"
],
"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": "AGPL-3.0",
"author": "XLor",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"animegarden-manager": "./cli.mjs"
},
"files": [
"*.mjs",
"dist"
],
"scripts": {
"build": "unbuild",
"format": "prettier --write src/**/*.ts test/**/*.ts",
"test": "vitest",
"test:ci": "vitest --run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@animegarden/client": "workspace:*",
"@animegarden/database": "workspace:*",
"@animegarden/scraper": "workspace:*",
"@animegarden/server": "workspace:*",
"@aws-sdk/client-s3": "^3.812.0",
"@breadc/color": "^0.9.7",
"breadc": "^0.9.7",
"dotenv": "^16.5.0",
"fs-extra": "^11.3.0",
"undici": "^7.10.0",
"zod": "^3.25.31"
},
"engines": {
"node": ">=v18.16.0"
}
}