forked from anomalyco/opentui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.99 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
{
"name": "@opentui/react",
"version": "0.4.3",
"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"
}
}