forked from thesysdev/openui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.55 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
{
"name": "@openuidev/react-lang",
"version": "0.1.3",
"description": "Define component libraries, generate LLM system prompts, and render streaming OpenUI Lang output in React — the core runtime for OpenUI generative UI",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"test": "vitest run",
"build": "tsc -p .",
"watch": "tsc -p . --watch",
"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",
"react",
"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/react-lang"
},
"bugs": {
"url": "https://github.com/thesysdev/openui/issues"
},
"author": "engineering@thesys.dev",
"dependencies": {
"zod": "^4.0.0"
},
"peerDependencies": {
"react": ">=19.0.0"
},
"devDependencies": {
"@types/react": "^19.0.0",
"vitest": "^4.0.18"
}
}