-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.21 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
47
48
{
"name": "cloudky-server",
"version": "0.0.1",
"description": "Self-hosted file sharing server",
"module": "index.ts",
"type": "module",
"scripts": {
"start": "bun run server/index.ts",
"test": "bun test",
"watch": "bun --watch server/index.ts",
"build": "bun build server/index.ts --compile --minify --outfile ./cloudky-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rabbit-Company/Cloudky-Server.git"
},
"keywords": [
"cloudky",
"cloud",
"file",
"sharing"
],
"author": "Rabbit Company",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Rabbit-Company/Cloudky-Server/issues"
},
"homepage": "https://github.com/Rabbit-Company/Cloudky-Server#readme",
"devDependencies": {
"@types/bun": "^1.1.8",
"@types/pg": "^8.11.8"
},
"peerDependencies": {
"typescript": "^5.5.4"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.637.0",
"@aws-sdk/s3-request-presigner": "^3.637.0",
"@rabbit-company/blake2b": "npm:@jsr/[email protected]",
"@rabbit-company/logger": "npm:@jsr/[email protected]",
"d1-api": "^0.1.0",
"ioredis": "^5.4.1",
"mariadb": "^3.3.1",
"mysql2": "^3.11.0",
"pg": "^8.12.0",
"prom-client": "^15.1.3"
}
}