@tavus/cvi-ui 0.0.2 → 0.0.3-beta.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/README.md +70 -17
- package/dist/index.js +352 -33
- package/package.json +40 -39
package/package.json
CHANGED
|
@@ -1,22 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tavus/cvi-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3-beta.0",
|
|
4
4
|
"description": "A CLI tool for installing and managing CVI components",
|
|
5
|
-
"publishConfig": {
|
|
6
|
-
"access": "public"
|
|
7
|
-
},
|
|
8
5
|
"keywords": [
|
|
9
|
-
"cvi",
|
|
10
|
-
"conversational-video-interface",
|
|
11
6
|
"ai-replica",
|
|
12
|
-
"react",
|
|
13
7
|
"components",
|
|
8
|
+
"conversational-video-interface",
|
|
9
|
+
"cvi",
|
|
14
10
|
"hooks",
|
|
11
|
+
"react",
|
|
15
12
|
"tavus"
|
|
16
13
|
],
|
|
17
|
-
"
|
|
14
|
+
"homepage": "https://github.com/Tavus-Engineering",
|
|
18
15
|
"license": "MIT",
|
|
16
|
+
"author": "Tavus",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/Tavus-Engineering"
|
|
20
|
+
},
|
|
21
|
+
"bin": {
|
|
22
|
+
"tavus-cvi": "./dist/index.js"
|
|
23
|
+
},
|
|
24
|
+
"workspaces": [
|
|
25
|
+
"examples/*"
|
|
26
|
+
],
|
|
27
|
+
"files": [
|
|
28
|
+
"dist"
|
|
29
|
+
],
|
|
19
30
|
"type": "module",
|
|
31
|
+
"main": "dist/index.js",
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"access": "public"
|
|
34
|
+
},
|
|
20
35
|
"scripts": {
|
|
21
36
|
"typecheck": "tsc --noEmit",
|
|
22
37
|
"build": "npm run typecheck && vp pack",
|
|
@@ -25,11 +40,12 @@
|
|
|
25
40
|
"convert-to-js": "node prepare-scripts/convert-to-js.js",
|
|
26
41
|
"build:templates": "npm run convert-to-js && npm run create-templates",
|
|
27
42
|
"clean": "rm -rf jsx-templates dist src/templates",
|
|
28
|
-
"build-all": "npm run clean && npm run build:templates && npm run build",
|
|
29
|
-
"test": "vp test run",
|
|
43
|
+
"build-all": "npm run clean && npm run build:templates && npm run build && vp check --fix",
|
|
44
|
+
"test": "npm run build:templates && vp test run test/unit test/integration",
|
|
30
45
|
"test:watch": "vp test watch",
|
|
31
|
-
"test:unit": "vp test run test/unit",
|
|
46
|
+
"test:unit": "npm run build:templates && vp test run test/unit",
|
|
32
47
|
"test:integration": "npm run build-all && vp test run test/integration",
|
|
48
|
+
"test:live": "npm run build-all && vp test run test/live",
|
|
33
49
|
"test:coverage": "vp test run --coverage",
|
|
34
50
|
"lint": "vp lint src",
|
|
35
51
|
"format": "vp fmt src",
|
|
@@ -46,20 +62,19 @@
|
|
|
46
62
|
"cli:add": "node dist/index.js add --cwd playground",
|
|
47
63
|
"playground:reset": "npm run cli:clean && rm -rf playground/.next playground/node_modules playground/package-lock.json"
|
|
48
64
|
},
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
"
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
"
|
|
62
|
-
"url": "https://github.com/Tavus-Engineering"
|
|
65
|
+
"dependencies": {
|
|
66
|
+
"@antfu/ni": "^30.1.0",
|
|
67
|
+
"commander": "^14.0.3",
|
|
68
|
+
"cosmiconfig": "^9.0.1",
|
|
69
|
+
"execa": "^9.6.1",
|
|
70
|
+
"fast-glob": "^3.3.3",
|
|
71
|
+
"fs-extra": "^11.3.4",
|
|
72
|
+
"kleur": "^4.1.5",
|
|
73
|
+
"ora": "^9.4.0",
|
|
74
|
+
"prompts": "^2.4.2",
|
|
75
|
+
"tsconfig-paths": "^4.2.0",
|
|
76
|
+
"update-notifier": "^7.3.1",
|
|
77
|
+
"zod": "^4.4.3"
|
|
63
78
|
},
|
|
64
79
|
"devDependencies": {
|
|
65
80
|
"@babel/generator": "^7.29.1",
|
|
@@ -75,19 +90,5 @@
|
|
|
75
90
|
"type-fest": "^5.6.0",
|
|
76
91
|
"typescript": "^6.0.3",
|
|
77
92
|
"vite-plus": "^0.1.20"
|
|
78
|
-
},
|
|
79
|
-
"dependencies": {
|
|
80
|
-
"@antfu/ni": "^30.1.0",
|
|
81
|
-
"commander": "^14.0.3",
|
|
82
|
-
"cosmiconfig": "^9.0.1",
|
|
83
|
-
"execa": "^9.6.1",
|
|
84
|
-
"fast-glob": "^3.3.3",
|
|
85
|
-
"fs-extra": "^11.3.4",
|
|
86
|
-
"kleur": "^4.1.5",
|
|
87
|
-
"ora": "^9.4.0",
|
|
88
|
-
"prompts": "^2.4.2",
|
|
89
|
-
"tsconfig-paths": "^4.2.0",
|
|
90
|
-
"update-notifier": "^7.3.1",
|
|
91
|
-
"zod": "^4.4.3"
|
|
92
93
|
}
|
|
93
94
|
}
|