-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.34 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.34 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
{
"name": "viral-video-generator",
"version": "0.1.0",
"module": "src/index.ts",
"type": "module",
"author": "daochild",
"license": "LGPL-3.0-or-later",
"private": true,
"packageManager": "bun@1.3.0",
"os": ["win32"],
"scripts": {
"build": "bun build ./src/index.ts --target=bun --bytecode --minify --outdir=./dist",
"dev": "bun --console-depth 5 --watch ./src/index.ts",
"start": "bun ./dist/index.js",
"test": "bun test",
"build:linux": "bun build --compile --bytecode --minify --sourcemap ./cli.ts --target=bun-linux-x64 --outfile=./release/viral-linux",
"build:macos": "bun build --compile --bytecode --minify --sourcemap ./cli.ts --target=bun-darwin-arm64 --outfile=./release/viral-macos",
"build:windows": "bun build --compile --bytecode --minify --sourcemap ./cli.ts --target=bun-windows-x64 --outfile=./release/viral",
"build:all": "bun run build:linux && bun run build:macos && bun run build:windows",
"photo": "bun run cli.ts --photo --prompt \"cozy coffee shop aesthetic\" -n 3 --model gemini-2.5-flash"
},
"workspaces": {
"packages": ["apps/*"],
"catalog": {},
"catalogs": {}
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@google/genai": "^1.34.0",
"ollama": "^0.6.3",
"openai": "^6.15.0"
}
}