mirror of
https://github.com/anomalyco/opentui.git
synced 2026-09-19 01:26:03 +08:00
78 lines
2.0 KiB
JSON
78 lines
2.0 KiB
JSON
{
|
|
"name": "@opentui/react",
|
|
"version": "0.2.8",
|
|
"description": "React renderer for building terminal user interfaces using OpenTUI core",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/anomalyco/opentui",
|
|
"directory": "packages/react"
|
|
},
|
|
"module": "src/index.ts",
|
|
"type": "module",
|
|
"private": true,
|
|
"main": "src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./src/index.ts",
|
|
"types": "./src/index.ts"
|
|
},
|
|
"./test-utils": {
|
|
"import": "./src/test-utils.ts",
|
|
"types": "./src/test-utils.d.ts"
|
|
},
|
|
"./runtime-plugin-support": {
|
|
"import": "./scripts/runtime-plugin-support.ts",
|
|
"types": "./scripts/runtime-plugin-support.ts"
|
|
},
|
|
"./runtime-plugin-support/configure": {
|
|
"import": "./scripts/runtime-plugin-support-configure.ts",
|
|
"types": "./scripts/runtime-plugin-support-configure.ts"
|
|
},
|
|
"./jsx-runtime": {
|
|
"import": "./jsx-runtime.js",
|
|
"types": "./jsx-runtime.d.ts"
|
|
},
|
|
"./jsx-dev-runtime": {
|
|
"import": "./jsx-dev-runtime.js",
|
|
"types": "./jsx-dev-runtime.d.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "bun run scripts/build.ts",
|
|
"build:examples": "bun examples/build.ts",
|
|
"build:dev": "bun run scripts/build.ts --dev",
|
|
"publish": "bun run scripts/publish.ts",
|
|
"test": "bun test"
|
|
},
|
|
"devDependencies": {
|
|
"@opentui/keymap": "workspace:*",
|
|
"@types/bun": "latest",
|
|
"@types/node": "^24.0.0",
|
|
"@types/react": "^19.2.0",
|
|
"@types/react-reconciler": "^0.33.0",
|
|
"@types/ws": "^8.18.1",
|
|
"react": ">=19.2.0",
|
|
"react-devtools-core": "^7.0.1",
|
|
"typescript": "^5",
|
|
"ws": "^8.18.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=19.2.0",
|
|
"react-devtools-core": "^7.0.1",
|
|
"ws": "^8.18.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"react-devtools-core": {
|
|
"optional": true
|
|
},
|
|
"ws": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@opentui/core": "workspace:*",
|
|
"react-reconciler": "^0.33.0"
|
|
}
|
|
}
|