@vui-rs/ui 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.
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "@vui-rs/ui",
3
+ "version": "0.1.0",
4
+ "description": "Application-level component library for vui-rs terminal UIs — dialogs, fuzzy select, command palette, toasts, autocomplete, status bars, virtual list, and busy indicators.",
5
+ "keywords": [
6
+ "bun",
7
+ "components",
8
+ "terminal",
9
+ "tui",
10
+ "ui",
11
+ "vue",
12
+ "vui-rs"
13
+ ],
14
+ "homepage": "https://github.com/open-ai-sdk/vui-rs#readme",
15
+ "bugs": "https://github.com/open-ai-sdk/vui-rs/issues",
16
+ "license": "MIT",
17
+ "author": "evann <dacsang97@gmail.com>",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/open-ai-sdk/vui-rs.git",
21
+ "directory": "packages/ui"
22
+ },
23
+ "files": [
24
+ "dist"
25
+ ],
26
+ "type": "module",
27
+ "module": "src/index.ts",
28
+ "types": "src/index.ts",
29
+ "exports": {
30
+ ".": "./src/index.ts"
31
+ },
32
+ "publishConfig": {
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
+ },
41
+ "access": "public"
42
+ },
43
+ "scripts": {
44
+ "build": "tsdown"
45
+ },
46
+ "dependencies": {
47
+ "@vue/runtime-core": "3.5.35",
48
+ "@vui-rs/core": "0.1.0",
49
+ "@vui-rs/vue": "0.1.0"
50
+ }
51
+ }