-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 866 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 866 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
{
"name": "nanoshare",
"version": "0.2.0",
"description": "Local screen sharing over WebRTC with a Bun CLI.",
"license": "MIT",
"type": "module",
"bin": {
"nanoshare": "src/index.ts"
},
"files": [
"src",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "bun run src/index.ts",
"check:publish": "npm pack --dry-run",
"build:local": "bun build --compile --minify --outfile dist/nanoshare ./src/index.ts",
"build:mac": "bun build --compile --minify --target=bun-darwin-arm64 --outfile dist/nanoshare-macos ./src/index.ts",
"build:win": "bun build --compile --minify --target=bun-windows-x64 --outfile dist/nanoshare-windows.exe ./src/index.ts"
},
"dependencies": {
"commander": "^14.0.3",
"werift": "^0.22.9"
},
"devDependencies": {
"@types/bun": "^1.3.3"
}
}