pro-visu 0.2.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.
- package/LICENSE +21 -0
- package/README.md +377 -0
- package/dist/cli/index.d.ts +1 -0
- package/dist/cli/index.js +6303 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/index.d.ts +818 -0
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -0
- package/dist/scene-app/assets/index-1XHtZ357.css +1 -0
- package/dist/scene-app/assets/index-sed_MW8w.js +49 -0
- package/dist/scene-app/index.html +25 -0
- package/package.json +85 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
|
+
<title>showcase scene</title>
|
|
7
|
+
<style>
|
|
8
|
+
html,
|
|
9
|
+
body {
|
|
10
|
+
margin: 0;
|
|
11
|
+
padding: 0;
|
|
12
|
+
overflow: hidden;
|
|
13
|
+
background: transparent;
|
|
14
|
+
}
|
|
15
|
+
* {
|
|
16
|
+
box-sizing: border-box;
|
|
17
|
+
}
|
|
18
|
+
</style>
|
|
19
|
+
<script type="module" crossorigin src="./assets/index-sed_MW8w.js"></script>
|
|
20
|
+
<link rel="stylesheet" crossorigin href="./assets/index-1XHtZ357.css">
|
|
21
|
+
</head>
|
|
22
|
+
<body>
|
|
23
|
+
<div id="root"></div>
|
|
24
|
+
</body>
|
|
25
|
+
</html>
|
package/package.json
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pro-visu",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "A portable CLI for generating showcase assets (scroll reels, and more) of the websites you build.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Pro Laico",
|
|
8
|
+
"homepage": "https://pro-visu.com",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/pro-laico/pro-visu.git",
|
|
12
|
+
"directory": "packages/pro-visu"
|
|
13
|
+
},
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/pro-laico/pro-visu/issues"
|
|
16
|
+
},
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"pro-visu",
|
|
22
|
+
"playwright",
|
|
23
|
+
"video",
|
|
24
|
+
"screenshot",
|
|
25
|
+
"marketing",
|
|
26
|
+
"cli",
|
|
27
|
+
"portfolio"
|
|
28
|
+
],
|
|
29
|
+
"bin": {
|
|
30
|
+
"pro-visu": "./dist/cli/index.js"
|
|
31
|
+
},
|
|
32
|
+
"main": "./dist/index.js",
|
|
33
|
+
"module": "./dist/index.js",
|
|
34
|
+
"types": "./dist/index.d.ts",
|
|
35
|
+
"exports": {
|
|
36
|
+
".": {
|
|
37
|
+
"types": "./dist/index.d.ts",
|
|
38
|
+
"import": "./dist/index.js"
|
|
39
|
+
},
|
|
40
|
+
"./package.json": "./package.json"
|
|
41
|
+
},
|
|
42
|
+
"files": [
|
|
43
|
+
"dist"
|
|
44
|
+
],
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": ">=18.18"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"c12": "^3.3.4",
|
|
50
|
+
"cac": "^7.0.0",
|
|
51
|
+
"consola": "^3.4.2",
|
|
52
|
+
"ffmpeg-static": "^5.3.0",
|
|
53
|
+
"image-size": "^2.0.2",
|
|
54
|
+
"ink": "^7.0.6",
|
|
55
|
+
"picocolors": "^1.1.1",
|
|
56
|
+
"playwright-core": "^1.60.0",
|
|
57
|
+
"react": "^19.2.7",
|
|
58
|
+
"update-notifier": "^7.3.1",
|
|
59
|
+
"zod": "^3.25.76",
|
|
60
|
+
"zod-to-json-schema": "^3.25.2"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@types/node": "^25.9.2",
|
|
64
|
+
"@types/react": "^19.2.0",
|
|
65
|
+
"@types/react-dom": "^19.2.0",
|
|
66
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
67
|
+
"ink-testing-library": "^4.0.0",
|
|
68
|
+
"react-dom": "^19.2.0",
|
|
69
|
+
"tsup": "^8.5.1",
|
|
70
|
+
"typescript": "^6.0.3",
|
|
71
|
+
"unocss": "^66.7.0",
|
|
72
|
+
"vite": "^6.0.0",
|
|
73
|
+
"vitest": "^4.1.8"
|
|
74
|
+
},
|
|
75
|
+
"scripts": {
|
|
76
|
+
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
|
|
77
|
+
"build": "pnpm clean && tsup && pnpm build:scene",
|
|
78
|
+
"build:scene": "vite build -c scene-app/vite.config.ts",
|
|
79
|
+
"build:cli": "tsup",
|
|
80
|
+
"dev": "tsup --watch",
|
|
81
|
+
"typecheck": "tsc --noEmit && tsc --noEmit -p scene-app/tsconfig.json",
|
|
82
|
+
"test": "vitest run",
|
|
83
|
+
"test:watch": "vitest"
|
|
84
|
+
}
|
|
85
|
+
}
|