-
Notifications
You must be signed in to change notification settings - Fork 619
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.67 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@openuidev/vue-lang",
"version": "0.1.4",
"description": "Define component libraries, generate LLM system prompts, and render streaming OpenUI Lang output in Vue 3 — the Vue runtime for OpenUI generative UI",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly --outDir dist",
"check": "vue-tsc --noEmit",
"test": "vitest run",
"lint:check": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"format:fix": "prettier --write ./src",
"format:check": "prettier --check ./src",
"prepare": "pnpm run build",
"ci": "pnpm run lint:check && pnpm run format:check"
},
"keywords": [
"openui",
"generative-ui",
"vue",
"vue3",
"llm",
"streaming",
"renderer",
"parser",
"ai",
"components",
"prompt-generation",
"zod",
"ui-generation",
"model-driven-ui",
"openui-lang"
],
"homepage": "https://openui.com",
"repository": {
"type": "git",
"url": "https://github.com/thesysdev/openui.git",
"directory": "packages/vue-lang"
},
"bugs": {
"url": "https://github.com/thesysdev/openui/issues"
},
"author": "engineering@thesys.dev",
"dependencies": {
"@openuidev/lang-core": "workspace:^"
},
"peerDependencies": {
"vue": ">=3.5.0",
"zod": "catalog:"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.7",
"@vue/test-utils": "^2.4.0",
"jsdom": "catalog:",
"typescript": "catalog:",
"vite": "^6.0.0",
"vitest": "^4.1.0",
"vue": "^3.5.0",
"vue-tsc": "^2.0.0"
}
}