-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "cloudky-website",
"version": "0.0.1",
"description": "Self-hosted file sharing server",
"module": "website/index.ts",
"type": "module",
"scripts": {
"start": "bun run tools/build.ts && bun run tools/server.ts",
"build": "bun run tools/build.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rabbit-Company/Cloudky-Website.git"
},
"keywords": [
"cloudky",
"cloud",
"file",
"sharing"
],
"author": "Rabbit Company",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Rabbit-Company/Cloudky-Website/issues"
},
"homepage": "https://github.com/Rabbit-Company/Cloudky-Website#readme",
"devDependencies": {
"@types/bun": "^1.2.2",
"tailwindcss": "^4.0.5"
},
"peerDependencies": {
"typescript": "^5.7.3"
},
"dependencies": {
"@rabbit-company/cloudky-api": "npm:@jsr/[email protected]",
"@rabbit-company/logger": "npm:@jsr/[email protected]",
"@rabbit-company/password-generator": "npm:@jsr/[email protected]"
}
}