-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·101 lines (101 loc) · 3.59 KB
/
package.json
File metadata and controls
executable file
·101 lines (101 loc) · 3.59 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
{
"name": "clipse",
"version": "1.0.0",
"private": true,
"description": "Server-side AI clip production for long-form video.",
"license": "AGPL-3.0-only",
"author": "Fixt",
"repository": {
"type": "git",
"url": "https://github.com/fixtse/ClipSE.git"
},
"bugs": {
"url": "https://github.com/fixtse/ClipSE/issues"
},
"homepage": "https://github.com/fixtse/ClipSE#readme",
"type": "module",
"scripts": {
"build": "next build apps/web",
"check": "biome check .",
"check:unsafe": "biome check --write --unsafe .",
"check:write": "biome check --write .",
"db:generate": "drizzle-kit generate --config services/postgres/drizzle.config.ts",
"db:migrate": "drizzle-kit migrate --config services/postgres/drizzle.config.ts",
"db:push": "drizzle-kit push --config services/postgres/drizzle.config.ts",
"db:studio": "drizzle-kit studio --config services/postgres/drizzle.config.ts",
"deploy:check": "pnpm run check && pnpm run typecheck && pnpm run test:unit",
"dev": "next dev apps/web --turbo",
"preview": "pnpm build && pnpm start",
"release:github": "gh release create v$(node -p \"require('./package.json').version\") --generate-notes --latest",
"release:major": "pnpm version major && git push --follow-tags && pnpm release:github",
"release:minor": "pnpm version minor && git push --follow-tags && pnpm release:github",
"release:patch": "pnpm version patch && git push --follow-tags && pnpm release:github",
"start": "next start apps/web",
"test:integration": "vitest run --config apps/web/vitest.integration.config.ts",
"test:integration:watch": "vitest --config apps/web/vitest.integration.config.ts",
"test:unit": "vitest run --config apps/web/vitest.config.ts",
"test:unit:coverage": "vitest run --config apps/web/vitest.config.ts --coverage",
"test:unit:watch": "vitest --config apps/web/vitest.config.ts",
"typecheck": "tsc --noEmit",
"worker": "tsx --env-file=.env apps/worker/src/clipse-worker.ts",
"worker:docker": "tsx apps/worker/src/clipse-worker.ts",
"worker:dev": "tsx watch --env-file=.env apps/worker/src/clipse-worker.ts"
},
"dependencies": {
"@ai-sdk/google": "^3.0.79",
"@ai-sdk/openai": "^3.0.65",
"@aws-sdk/client-s3": "^3.1053.0",
"@aws-sdk/lib-storage": "^3.1053.0",
"@aws-sdk/s3-request-presigner": "^3.1053.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@electric-sql/pglite": "^0.4.5",
"@napi-rs/canvas": "^1.0.0",
"@t3-oss/env-nextjs": "^0.13.11",
"@tanstack/react-query": "^5.100.13",
"@trpc/client": "^11.17.0",
"@trpc/react-query": "^11.17.0",
"@trpc/server": "^11.17.0",
"ai": "^6.0.191",
"better-auth": "^1.6.11",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"drizzle-orm": "^0.45.2",
"framer-motion": "^12.40.0",
"jsonrepair": "^3.14.0",
"lucide-react": "^1.16.0",
"next": "^16.2.6",
"next-themes": "^0.4.6",
"postgres": "^3.4.9",
"radix-ui": "^1.4.3",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-hot-toast": "^2.6.0",
"react-player": "^3.4.0",
"server-only": "^0.0.1",
"superjson": "^2.2.6",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@tailwindcss/postcss": "^4.3.0",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "4.1.7",
"drizzle-kit": "^0.31.10",
"postcss": "^8.5.15",
"tailwindcss": "^4.3.0",
"tsx": "^4.22.3",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
},
"ct3aMetadata": {
"initVersion": "7.40.0"
},
"packageManager": "pnpm@11.4.0"
}