-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 947 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 947 Bytes
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
{
"name": "osshelf",
"version": "0.1.0",
"private": true,
"description": "基于 Cloudflare 部署的多厂商 OSS 文件管理系统,支持 WebDAV 协议",
"scripts": {
"dev:web": "pnpm --filter web dev",
"dev:api": "pnpm --filter api dev",
"build:web": "pnpm --filter @osshelf/shared build && pnpm --filter web build",
"build:api": "pnpm --filter api build",
"deploy:api": "pnpm --filter @osshelf/shared build && pnpm --filter api deploy:worker",
"lint": "pnpm -r lint",
"typecheck": "pnpm -r typecheck",
"db:generate": "pnpm --filter api db:generate",
"db:migrate": "pnpm --filter api db:migrate",
"db:studio": "pnpm --filter api db:studio"
},
"keywords": [
"cloudflare",
"oss",
"s3",
"webdav",
"file-manager",
"storage"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.0"
}