-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.04 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
{
"name": "streamdrop",
"module": "src/server.ts",
"type": "module",
"private": true,
"license": "GPL-3.0-only",
"scripts": {
"dev": "bun --watch src/server.ts",
"start": "bun src/server.ts",
"test": "bun test src tests/*.test.ts",
"test:e2e": "playwright test",
"check": "bunx tsc -p tsconfig.json",
"cli:build": "bun build cli/index.ts --compile --outfile dist/streamdrop-cli",
"cli:build-npm": "bun build cli/index.ts --target node --outfile cli-pkg/index.js && echo \"#!/usr/bin/env node\" | cat - cli-pkg/index.js > cli-pkg/index.tmp && mv cli-pkg/index.tmp cli-pkg/index.js && chmod +x cli-pkg/index.js && cp cli/README.md cli-pkg/README.md && cp cli/package.json cli-pkg/package.json",
"cli:dev": "bun cli/index.ts"
},
"dependencies": {
"@noble/curves": "^2.2.0",
"hono": "^4.12.28",
"qrcode": "^1.5.4",
"tar": "^7.5.19"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@types/bun": "latest",
"@types/tar": "^7.0.87",
"typescript": "^7.0.2",
"werift": "^0.23.0"
}
}