-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.96 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
{
"name": "mdrive",
"version": "0.9.1",
"description": "A role-based media asset management service for storing, organizing, and distributing unlimited media via global CDN, with granular access control and signed URL delivery",
"author": "Shirsendu Bairagi <shirsendu2001@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Modest-Human-Brands/mdrive.git"
},
"type": "module",
"private": true,
"engines": {
"node": "^22.11.0 || ^24.14.0",
"pnpm": "^9.15.0 || ^10.2.0",
"bun": "^1.2.9"
},
"packageManager": "bun@1.3.14",
"scripts": {
"prepare": "husky || true",
"postinstall": "nitro prepare",
"dev": "nitro dev",
"detect": "gitleaks git --verbose",
"lint": "eslint . --fix",
"format": "prettier . --write",
"test:load": "k6 run tests/load.test.ts",
"build": "nitro build",
"generate": "nitro generate",
"preview": "nitro preview",
"start": "node --env-file=.env.prod .output/server/index.mjs",
"clean": "nitro cleanup",
"docker:build": "docker build --build-arg VERSION=dev --build-arg BUILD_TIME=now -t mdrive:dev .",
"docker:start": "docker run --detach --name mdrive-dev --env-file .env.prod -p 3500:3000 mdrive:dev"
},
"dependencies": {
"@notionhq/client": "^5.22.0",
"aws4fetch": "^1.0.20",
"busboy": "^1.6.0",
"magic-regexp": "^0.11.0",
"mime-types": "^3.0.2",
"nitro": "^3.0.260610-beta",
"ohash": "^2.0.11",
"undio": "^0.2.0",
"unstorage": "^1.17.5",
"zod": "^4.4.3"
},
"devDependencies": {
"@commitlint/cli": "^21.1.0",
"@commitlint/config-conventional": "^21.1.0",
"@dotenvx/dotenvx": "^1.75.1",
"@types/bun": "^1.3.14",
"@types/busboy": "^1.5.4",
"@types/mime-types": "^3.0.1",
"eslint": "^10.5.0",
"eslint-config-unjs": "^0.6.2",
"husky": "^9.1.7",
"prettier": "^3.8.4",
"typescript": "~6.0.3"
},
"trustedDependencies": [
"esbuild",
"protobufjs"
]
}