🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@opentui/react

Package Overview
Dependencies
Maintainers
3
Versions
274
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@opentui/react - npm Package Compare versions

Comparing version
0.1.17
to
0.1.18
+2
-2
package.json

@@ -7,3 +7,3 @@ {

"type": "module",
"version": "0.1.17",
"version": "0.1.18",
"description": "React renderer for building terminal user interfaces using OpenTUI core",

@@ -39,3 +39,3 @@ "license": "MIT",

"dependencies": {
"@opentui/core": "0.1.17",
"@opentui/core": "0.1.18",
"react-reconciler": "^0.32.0"

@@ -42,0 +42,0 @@ },

+19
-19

@@ -30,2 +30,21 @@ # @opentui/react

## TypeScript Configuration
For optimal TypeScript support, configure your `tsconfig.json`:
```json
{
"compilerOptions": {
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"jsxImportSource": "@opentui/react",
"strict": true,
"skipLibCheck": true
}
}
```
## Core Concepts

@@ -514,20 +533,1 @@

```
## TypeScript Configuration
For optimal TypeScript support, configure your `tsconfig.json`:
```json
{
"compilerOptions": {
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"jsxImportSource": "@opentui/react",
"strict": true,
"skipLibCheck": true
}
}
```