-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.66 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
66
67
68
69
70
71
{
"name": "@animegarden/server",
"version": "0.5.2",
"private": true,
"description": "Server implementation 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": "AGPL-3.0",
"author": "XLor",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"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:*",
"@breadc/color": "^0.9.7",
"@hono/node-server": "^1.14.2",
"@hono/zod-validator": "^0.5.0",
"bgmd": "^0.0.61",
"croner": "^9.0.0",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.1",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.43.1",
"fast-xml-parser": "^5.2.3",
"hono": "^4.7.10",
"ioredis": "^5.6.1",
"memofunc": "^0.1.6",
"ohash": "^2.0.11",
"sitemap": "^8.0.0",
"string-width": "^7.2.0",
"zod": "^3.25.31"
},
"devDependencies": {
"@animegarden/shared": "workspace:*"
},
"engines": {
"node": ">=v18.16.0"
}
}