@opul/cli 0.1.0

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.
Files changed (3) hide show
  1. package/README.md +49 -0
  2. package/dist/index.js +1391 -0
  3. package/package.json +53 -0
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "@opul/cli",
3
+ "version": "0.1.0",
4
+ "description": "Record a polished product-demo video from your running web app — from the terminal.",
5
+ "type": "module",
6
+ "bin": {
7
+ "opul": "./dist/index.js"
8
+ },
9
+ "publishConfig": {
10
+ "access": "public"
11
+ },
12
+ "files": [
13
+ "dist",
14
+ "README.md"
15
+ ],
16
+ "keywords": [
17
+ "demo",
18
+ "product-demo",
19
+ "screen-recording",
20
+ "screencast",
21
+ "video",
22
+ "cdp",
23
+ "puppeteer",
24
+ "cli",
25
+ "saas",
26
+ "opul"
27
+ ],
28
+ "homepage": "https://opul.dev",
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "git+https://github.com/syedfounder/opul.git",
32
+ "directory": "packages/cli"
33
+ },
34
+ "author": "Syed Shah",
35
+ "license": "MIT",
36
+ "engines": {
37
+ "node": ">=18"
38
+ },
39
+ "scripts": {
40
+ "build": "tsup",
41
+ "dev": "tsup --watch",
42
+ "prepublishOnly": "tsup",
43
+ "test": "vitest run"
44
+ },
45
+ "dependencies": {
46
+ "commander": "^12.1.0",
47
+ "puppeteer-core": "^24.1.0"
48
+ },
49
+ "devDependencies": {
50
+ "@opul/recorder": "workspace:*",
51
+ "tsup": "^8.5.1"
52
+ }
53
+ }