-
Notifications
You must be signed in to change notification settings - Fork 224
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.11 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.11 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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@openuidev/react-lang",
"version": "0.2.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.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.cts",
"sideEffects": false,
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"test": "vitest run",
"build": "tsdown",
"watch": "tsdown --watch",
"typecheck": "tsc --noEmit",
"lint:check": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"format:fix": "prettier --write ./src",
"format:check": "prettier --check ./src",
"check:publint": "publint",
"check:attw": "attw --pack .",
"prepare": "pnpm run build",
"prepublishOnly": "pnpm run check:publint && pnpm run check:attw",
"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": {
"@openuidev/lang-core": "workspace:^"
},
"peerDependencies": {
"@modelcontextprotocol/sdk": ">=1.0.0",
"react": "^18.3.1 || ^19.0.0",
"zod": "^3.25.0 || ^4.0.0"
},
"peerDependenciesMeta": {
"@modelcontextprotocol/sdk": {
"optional": true
}
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@types/react": "^19.0.0",
"vitest": "^4.0.18"
}
}