-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"name": "revanced-api",
"version": "1.8.0",
"description": "API server for ReVanced.",
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"db:create": "wrangler d1 create revanced-api",
"db:migration:generate": "drizzle-kit generate",
"db:migration:apply": "wrangler d1 migrations apply revanced-api"
},
"keywords": [
"revanced",
"api",
"hono",
"cloudflare-workers"
],
"license": "AGPL-3.0",
"dependencies": {
"@hono/swagger-ui": "^0.6.1",
"@hono/zod-openapi": "^1.2.2",
"drizzle-orm": "^0.45.1",
"hono": "^4.12.8",
"zod": "^4.3.6"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260313.1",
"@kilianpaquier/semantic-release-backmerge": "^1.7.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^13.1.5",
"@types/node": "^25.5.0",
"drizzle-kit": "^0.31.9",
"semantic-release": "^25.0.3",
"typescript": "^5.9.3",
"wrangler": "^4.73.0"
}
}