-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
137 lines (137 loc) · 4.76 KB
/
Copy pathpackage.json
File metadata and controls
137 lines (137 loc) · 4.76 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "spooool",
"version": "0.1.0",
"description": "A video host that respects your time. Built on Cloudflare.",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "concurrently \"vite\" \"wrangler dev --port 8787\"",
"dev:frontend": "vite",
"dev:worker": "wrangler dev --port 8787",
"build": "vite build",
"deploy": "vite build && wrangler deploy",
"deploy:prod": "vite build && wrangler deploy --env production",
"test": "vitest --passWithNoTests && vitest --config vitest.workers.config.ts --passWithNoTests",
"test:workers": "vitest --config vitest.workers.config.ts --passWithNoTests",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"lint": "oxlint src && npm run lint:no-providers && npm run lint:remotion-animation && npm run lint:deps",
"lint:deps": "node scripts/check-package-deps.mjs",
"lockfile:linux": "bash scripts/regenerate-lockfile-linux.sh",
"lint:remotion-animation": "node scripts/check-remotion-animation.mjs",
"lint:fix": "oxlint src --fix",
"lint:no-providers": "node scripts/check-no-direct-providers.mjs",
"format": "prettier --write 'src/**/*.{ts,tsx,json}'",
"format:check": "prettier --check 'src/**/*.{ts,tsx,json}'",
"type-check": "tsc --noEmit",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"db:migrate": "wrangler d1 migrations apply spooool-prod --remote",
"db:migrate:staging": "wrangler d1 migrations apply spooool-staging --env staging --remote",
"db:seed": "node scripts/seed-db.js",
"worker:tail": "wrangler tail",
"worker:logs": "wrangler tail --format json | jq .",
"posthog:sync-build-env": "node scripts/sync-posthog-build-env.mjs"
},
"dependencies": {
"@cloudflare/ai-utils": "^1.0.1",
"@cloudflare/containers": "^0.3.5",
"@cloudflare/kumo": "^1.16.0",
"@cloudflare/stream-react": "^1.9.3",
"@cloudflare/tanstack-ai": "^0.1.9",
"@cloudflare/workers-types": "^4.20240221.1",
"@gfazioli/mantine-video": "^1.0.0",
"@hotwired/turbo": "^8.0.23",
"@mantine/core": "^7.17.8",
"@mantine/hooks": "^7.17.8",
"@marsidev/react-turnstile": "^1.5.2",
"@modelcontextprotocol/sdk": "^1.29.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-toggle": "^1.1.10",
"@remotion/animation-utils": "^4.0.467",
"@remotion/captions": "^4.0.467",
"@remotion/google-fonts": "^4.0.467",
"@remotion/layout-utils": "^4.0.467",
"@remotion/media": "^4.0.467",
"@remotion/media-parser": "^4.0.467",
"@remotion/media-utils": "^4.0.467",
"@remotion/shapes": "^4.0.467",
"@remotion/studio": "^4.0.467",
"@sentry/cloudflare": "^10.50.0",
"@sentry/react": "^10.50.0",
"@tabler/icons-react": "^3.44.0",
"@tanstack/ai": "^0.26.1",
"@tanstack/ai-react": "^0.15.1",
"better-auth": "^1.6.11",
"buffer-image-size": "file:buffer-image-size-0.6.4.tgz",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"entities": "file:entities-7.0.1.tgz",
"happy-dom": "file:happy-dom-20.10.1.tgz",
"hls.js": "^1.6.16",
"hono": "^4.12.21",
"jose": "^6.2.2",
"lottie-react": "^2.4.1",
"lucide-react": "^1.14.0",
"mediabunny": "^1.45.4",
"posthog-js": "^1.404.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.30.4",
"remotion": "^4.0.467",
"tailwind-merge": "^1.14.0",
"web-vitals": "^5.2.0",
"whatwg-mimetype": "file:whatwg-mimetype-3.0.0.tgz",
"ws": "^8.21.0",
"zod": "^4.3.6"
},
"optionalDependencies": {
"@rolldown/binding-linux-x64-gnu": "file:rolldown-binding-linux-x64-gnu-1.0.0-rc.17.tgz"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.16.13",
"@playwright/test": "^1.59.1",
"@types/node": "^20.10.6",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.5",
"concurrently": "^10.0.3",
"esbuild": "^0.28.1",
"oxlint": "^1.61.0",
"prettier": "^3.8.3",
"typescript": "^5.3.3",
"vite": "^8.0.10",
"vitest": "^4.1.5",
"wrangler": "^4.85.0"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"keywords": [
"cloudflare",
"workers",
"video",
"streaming",
"youtube",
"r2",
"stream",
"d1",
"edge-computing"
],
"author": "aloe wright",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aloewright/spooool.git"
},
"bugs": {
"url": "https://github.com/aloewright/spooool/issues"
},
"homepage": "https://github.com/aloewright/spooool"
}