forked from anomalyco/opentui
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 882 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "@opentui/vue",
"version": "0.1.25",
"description": "Vue renderer for OpenTUI",
"repository": {
"type": "git",
"url": "https://github.com/sst/opentui",
"directory": "packages/vue"
},
"module": "index.ts",
"type": "module",
"private": true,
"main": "index.ts",
"license": "MIT",
"exports": {
".": {
"types": "./index.ts",
"import": "./index.ts"
}
},
"scripts": {
"build": "bun scripts/build.ts",
"publish": "bun scripts/publish.ts",
"start:example": "bun scripts/build-examples.ts && bun run example/dist/main.js"
},
"dependencies": {
"@opentui/core": "workspace:*",
"@vue/runtime-core": "^3.5.18"
},
"peerDependencies": {
"vue": "^3.5.18",
"typescript": "^5"
},
"devDependencies": {
"bun-plugin-vue3": "^1.0.0-beta.2",
"typescript": "^5",
"vue": "^3.5.18"
}
}