-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·52 lines (52 loc) · 1.21 KB
/
package.json
File metadata and controls
executable file
·52 lines (52 loc) · 1.21 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
{
"name": "@elefunc/send",
"version": "0.1.37",
"description": "Browser-compatible file transfer CLI and TUI powered by Bun, WebRTC, and Rezi.",
"license": "MIT",
"type": "module",
"packageManager": "bun@1.3.11",
"engines": {
"bun": ">=1.3.11"
},
"bin": {
"send": "./src/index.ts"
},
"files": [
"assets",
"scripts",
"src",
"runtime",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"build:standalone": "bun run ./scripts/build-standalone.ts",
"build:standalone_all": "bun run ./scripts/build-standalone-all.ts",
"start": "bun run ./src/index.ts",
"test": "bun test",
"fix:rezi": "bun run ./dia/rezi-fix.ts",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elefunc/send.git"
},
"homepage": "https://github.com/elefunc/send#readme",
"bugs": {
"url": "https://github.com/elefunc/send/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@rezi-ui/core": "0.1.0-alpha.60",
"@rezi-ui/node": "0.1.0-alpha.60",
"cac": "^7.0.0",
"werift": "^0.22.9"
},
"devDependencies": {
"@types/node": "^24.5.2",
"typescript": "^5.8.3"
}
}