-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.39 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
{
"name": "mkdemo",
"version": "1.0.0",
"description": "CLI tool for generating high-quality web demo MP4 videos using AI-driven browser automation",
"type": "module",
"main": "src/index.js",
"bin": {
"mkdemo": "./src/cli/index.js"
},
"scripts": {
"web": "node apps/web/server.js",
"web:dev": "node --watch apps/web/server.js",
"start": "node apps/web/server.js",
"cli": "node src/index.js",
"setup": "node scripts/setup.js",
"pipeline": "node scripts/run-pipeline.js",
"test": "NODE_OPTIONS='--loader=./node_modules/mocha/lib/nodejs/esm-utils.js' mocha test/**/*.test.js --recursive",
"test:pipeline": "NODE_OPTIONS='--loader=./node_modules/mocha/lib/nodejs/esm-utils.js' mocha test/pipeline/**/*.test.js --recursive",
"test:watch": "NODE_OPTIONS='--loader=./node_modules/mocha/lib/nodejs/esm-utils.js' mocha test/**/*.test.js --recursive --watch",
"test:coverage": "NODE_OPTIONS='--loader=./node_modules/mocha/lib/nodejs/esm-utils.js' c8 mocha test/**/*.test.js --recursive",
"lint": "eslint src/ test/",
"lint:fix": "eslint src/ test/ --fix",
"format": "prettier --write src/ test/",
"format:check": "prettier --check src/ test/",
"dev": "node --watch src/index.js",
"build": "echo 'No build step required for Node.js project'",
"postinstall": "node scripts/setup.js"
},
"keywords": [
"cli",
"demo",
"video",
"automation",
"puppeteer",
"ai",
"openai",
"elevenlabs",
"ffmpeg"
],
"author": "RooCode",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@hono/node-server": "^1.13.7",
"hono": "^4.6.14",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"dotenv": "^16.4.1",
"elevenlabs": "^0.8.2",
"fluent-ffmpeg": "^2.1.2",
"fs-extra": "^11.2.0",
"node-fetch": "^3.3.2",
"openai": "^4.28.4",
"ora": "^8.0.1",
"puppeteer": "^21.11.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@eslint/js": "^8.57.0",
"c8": "^9.1.0",
"chai": "^5.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mocha": "^10.2.0",
"mocha": "^10.2.0",
"prettier": "^3.2.5"
},
"repository": {
"type": "git",
"url": "https://github.com/username/mkdemo.git"
},
"bugs": {
"url": "https://github.com/username/mkdemo/issues"
},
"homepage": "https://github.com/username/mkdemo#readme"
}