-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.01 KB
/
package.json
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
{
"name": "minio-cdn",
"version": "0.0.2",
"description": "Serve S3 MinIO files like Cloudflare R2",
"module": "src/app.ts",
"type": "module",
"scripts": {
"format": "prettier . --write"
},
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"useTabs": false,
"quoteProps": "consistent",
"bracketSpacing": true,
"arrowParens": "always",
"printWidth": 100
},
"repository": {
"type": "git",
"url": "git+https://github.com/sooluh/minio-cdn.git"
},
"author": {
"name": "Abu Masyail",
"email": "[email protected]",
"url": "https://suluh.my.id"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sooluh/minio-cdn/issues"
},
"homepage": "https://github.com/sooluh/minio-cdn",
"devDependencies": {
"@types/bun": "latest",
"@types/minio": "^7.1.1",
"prettier": "^3.3.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"hono": "^4.4.3",
"minio": "^8.0.0"
}
}