@kadj-amoah/showrunner 1.1.7 → 1.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +187 -211
- package/README.md +213 -191
- package/dist/cli.js +88 -13
- package/dist/cli.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +85 -85
package/package.json
CHANGED
|
@@ -1,85 +1,85 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@kadj-amoah/showrunner",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "Automated product demo recording & production tool",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"author": "Kofi Adjei <kadj.amoah@gmail.com>",
|
|
7
|
-
"homepage": "https://github.com/kadj-amoah/showrunner#readme",
|
|
8
|
-
"repository": {
|
|
9
|
-
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/kadj-amoah/showrunner.git"
|
|
11
|
-
},
|
|
12
|
-
"bugs": {
|
|
13
|
-
"url": "https://github.com/kadj-amoah/showrunner/issues"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"demo",
|
|
17
|
-
"video",
|
|
18
|
-
"playwright",
|
|
19
|
-
"screen-recording",
|
|
20
|
-
"voiceover",
|
|
21
|
-
"automation",
|
|
22
|
-
"ffmpeg"
|
|
23
|
-
],
|
|
24
|
-
"type": "module",
|
|
25
|
-
"bin": {
|
|
26
|
-
"showrunner": "./dist/cli.js"
|
|
27
|
-
},
|
|
28
|
-
"main": "./dist/index.js",
|
|
29
|
-
"types": "./dist/index.d.ts",
|
|
30
|
-
"exports": {
|
|
31
|
-
".": {
|
|
32
|
-
"import": "./dist/index.js",
|
|
33
|
-
"types": "./dist/index.d.ts"
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
"files": [
|
|
37
|
-
"dist",
|
|
38
|
-
"templates",
|
|
39
|
-
"README.md",
|
|
40
|
-
"CHANGELOG.md",
|
|
41
|
-
"LICENSE"
|
|
42
|
-
],
|
|
43
|
-
"engines": {
|
|
44
|
-
"node": ">=20.6"
|
|
45
|
-
},
|
|
46
|
-
"publishConfig": {
|
|
47
|
-
"registry": "https://npm.pkg.github.com",
|
|
48
|
-
"access": "public"
|
|
49
|
-
},
|
|
50
|
-
"scripts": {
|
|
51
|
-
"build": "tsup",
|
|
52
|
-
"dev": "tsx src/cli.ts",
|
|
53
|
-
"typecheck": "tsc --noEmit",
|
|
54
|
-
"test": "vitest run",
|
|
55
|
-
"test:watch": "vitest",
|
|
56
|
-
"lint": "eslint src --ext .ts",
|
|
57
|
-
"format": "prettier --write \"src/**/*.ts\"",
|
|
58
|
-
"prepublishOnly": "npm run typecheck && npm run test && npm run build"
|
|
59
|
-
},
|
|
60
|
-
"dependencies": {
|
|
61
|
-
"@anthropic-ai/sdk": "^0.88.0",
|
|
62
|
-
"@babel/parser": "^7.26.0",
|
|
63
|
-
"@babel/traverse": "^7.26.0",
|
|
64
|
-
"@babel/types": "^7.26.0",
|
|
65
|
-
"@clack/prompts": "^0.9.1",
|
|
66
|
-
"commander": "^12.1.0",
|
|
67
|
-
"js-yaml": "^4.1.0",
|
|
68
|
-
"openai": "^6.39.0",
|
|
69
|
-
"playwright-core": "^1.49.0",
|
|
70
|
-
"undici": "^7.0.0",
|
|
71
|
-
"zod": "^3.23.8",
|
|
72
|
-
"zod-to-json-schema": "^3.25.2"
|
|
73
|
-
},
|
|
74
|
-
"devDependencies": {
|
|
75
|
-
"@types/babel__traverse": "^7.28.0",
|
|
76
|
-
"@types/js-yaml": "^4.0.9",
|
|
77
|
-
"@types/node": "^22.10.0",
|
|
78
|
-
"eslint": "^9.16.0",
|
|
79
|
-
"prettier": "^3.4.0",
|
|
80
|
-
"tsup": "^8.3.5",
|
|
81
|
-
"tsx": "^4.19.2",
|
|
82
|
-
"typescript": "^5.7.2",
|
|
83
|
-
"vitest": "^2.1.8"
|
|
84
|
-
}
|
|
85
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@kadj-amoah/showrunner",
|
|
3
|
+
"version": "1.1.8",
|
|
4
|
+
"description": "Automated product demo recording & production tool",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Kofi Adjei <kadj.amoah@gmail.com>",
|
|
7
|
+
"homepage": "https://github.com/kadj-amoah/showrunner#readme",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/kadj-amoah/showrunner.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/kadj-amoah/showrunner/issues"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"demo",
|
|
17
|
+
"video",
|
|
18
|
+
"playwright",
|
|
19
|
+
"screen-recording",
|
|
20
|
+
"voiceover",
|
|
21
|
+
"automation",
|
|
22
|
+
"ffmpeg"
|
|
23
|
+
],
|
|
24
|
+
"type": "module",
|
|
25
|
+
"bin": {
|
|
26
|
+
"showrunner": "./dist/cli.js"
|
|
27
|
+
},
|
|
28
|
+
"main": "./dist/index.js",
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
|
+
"exports": {
|
|
31
|
+
".": {
|
|
32
|
+
"import": "./dist/index.js",
|
|
33
|
+
"types": "./dist/index.d.ts"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"dist",
|
|
38
|
+
"templates",
|
|
39
|
+
"README.md",
|
|
40
|
+
"CHANGELOG.md",
|
|
41
|
+
"LICENSE"
|
|
42
|
+
],
|
|
43
|
+
"engines": {
|
|
44
|
+
"node": ">=20.6"
|
|
45
|
+
},
|
|
46
|
+
"publishConfig": {
|
|
47
|
+
"registry": "https://npm.pkg.github.com",
|
|
48
|
+
"access": "public"
|
|
49
|
+
},
|
|
50
|
+
"scripts": {
|
|
51
|
+
"build": "tsup",
|
|
52
|
+
"dev": "tsx src/cli.ts",
|
|
53
|
+
"typecheck": "tsc --noEmit",
|
|
54
|
+
"test": "vitest run",
|
|
55
|
+
"test:watch": "vitest",
|
|
56
|
+
"lint": "eslint src --ext .ts",
|
|
57
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
58
|
+
"prepublishOnly": "npm run typecheck && npm run test && npm run build"
|
|
59
|
+
},
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"@anthropic-ai/sdk": "^0.88.0",
|
|
62
|
+
"@babel/parser": "^7.26.0",
|
|
63
|
+
"@babel/traverse": "^7.26.0",
|
|
64
|
+
"@babel/types": "^7.26.0",
|
|
65
|
+
"@clack/prompts": "^0.9.1",
|
|
66
|
+
"commander": "^12.1.0",
|
|
67
|
+
"js-yaml": "^4.1.0",
|
|
68
|
+
"openai": "^6.39.0",
|
|
69
|
+
"playwright-core": "^1.49.0",
|
|
70
|
+
"undici": "^7.0.0",
|
|
71
|
+
"zod": "^3.23.8",
|
|
72
|
+
"zod-to-json-schema": "^3.25.2"
|
|
73
|
+
},
|
|
74
|
+
"devDependencies": {
|
|
75
|
+
"@types/babel__traverse": "^7.28.0",
|
|
76
|
+
"@types/js-yaml": "^4.0.9",
|
|
77
|
+
"@types/node": "^22.10.0",
|
|
78
|
+
"eslint": "^9.16.0",
|
|
79
|
+
"prettier": "^3.4.0",
|
|
80
|
+
"tsup": "^8.3.5",
|
|
81
|
+
"tsx": "^4.19.2",
|
|
82
|
+
"typescript": "^5.7.2",
|
|
83
|
+
"vitest": "^2.1.8"
|
|
84
|
+
}
|
|
85
|
+
}
|