-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 948 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 948 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
34
35
36
37
38
39
40
41
42
{
"name": "browsey",
"version": "0.1.2",
"description": "Mobile-friendly web file browser. Serve any directory and browse it from your phone.",
"keywords": [
"file-browser",
"file-server",
"mobile",
"bun",
"cli"
],
"workspaces": [
"packages/*"
],
"bin": {
"browsey": "dist/browsey"
},
"files": [
"dist/browsey"
],
"scripts": {
"build": "bun run scripts/build.ts",
"prepublishOnly": "bun run build",
"dev:api": "bun --watch packages/cli/src/bin.ts api",
"dev:app": "bun --watch packages/cli/src/bin.ts app --api http://localhost:4200",
"typecheck": "tsc --build"
},
"devDependencies": {
"@types/qrcode-terminal": "^0.12.2",
"@types/bun": "latest",
"typescript": "^5.7.0"
},
"engines": {
"bun": ">=1.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vforsh/browsey.git"
},
"author": "vforsh",
"license": "MIT"
}