An entry for the streamplace vod showcase
1{
2 "name": "streamhut",
3 "private": true,
4 "workspaces": [
5 "packages/at-run/*",
6 "apps/*"
7 ],
8 "scripts": {
9 "dev:runner": "bun run --cwd packages/at-run/runner dev",
10 "dev:vod": "bun build --watch apps/vod/src/index.ts --bundle --target=browser --outfile=apps/vod/dist/bundle.js",
11 "dev:web": "bun run --cwd apps/web dev",
12 "build:runner": "bun run --cwd packages/at-run/runner build",
13 "build:vod": "bun build apps/vod/src/index.ts --bundle --target=browser --outfile=apps/vod/dist/bundle.js",
14 "build:web": "bun run --cwd apps/web build",
15 "build:cli": "bun run --cwd packages/at-run/cli build"
16 },
17 "devDependencies": {
18 "@types/bun": "^1.3.11",
19 "@types/node": "^25.5.0",
20 "bun-types": "^1.3.11",
21 "typescript": "^6.0.2"
22 },
23 "dependencies": {
24 "@atproto/api": "^0.19.5",
25 "@atproto/identity": "^0.4.12",
26 "@atproto/syntax": "^0.5.2"
27 }
28}