mirror of
https://github.com/anomalyco/opentui.git
synced 2026-09-19 01:26:03 +08:00
54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"name": "@opentui/react",
|
|
"version": "0.1.60",
|
|
"description": "React renderer for building terminal user interfaces using OpenTUI core",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/sst/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"
|
|
},
|
|
"./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:dev": "bun run scripts/build.ts --dev",
|
|
"publish": "bun run scripts/publish.ts",
|
|
"test": "bun test"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"@types/node": "^24.0.0",
|
|
"@types/react": "^19.0.0",
|
|
"@types/react-reconciler": "^0.32.0",
|
|
"typescript": "^5"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=19.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@opentui/core": "workspace:*",
|
|
"react-reconciler": "^0.32.0"
|
|
}
|
|
}
|