-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.4 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.4 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
{
"name": "viralengine",
"version": "1.0.0",
"description": "Automated viral video generation engine",
"main": "dist/index.js",
"type": "module",
"bin": {
"viralengine": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"cli": "tsx src/cli.ts",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src --ext .ts",
"clean": "rm -rf dist",
"bmad:flatten": "node tools/flattener/main.js",
"bmad:install": "node tools/bmad-installer.js",
"bmad:update": "node tools/bmad-installer.js"
},
"keywords": [
"video",
"viral",
"generator",
"tiktok",
"reels",
"shorts"
],
"author": "",
"license": "ISC",
"dependencies": {
"@types/commander": "^2.12.5",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/node": "^24.3.0",
"@types/sharp": "^0.32.0",
"@types/uuid": "^10.0.0",
"axios": "^1.11.0",
"chalk": "^5.6.0",
"commander": "^14.0.0",
"dotenv": "^17.2.1",
"fluent-ffmpeg": "^2.1.3",
"node-cache": "^5.1.2",
"openai": "^5.15.0",
"ora": "^8.2.0",
"sharp": "^0.34.3",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"uuid": "^11.1.0",
"winston": "^3.17.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^30.0.5",
"ts-jest": "^29.4.1"
}
}