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
67 lines (67 loc) · 1.59 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.59 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
{
"name": "@opentui/react",
"version": "0.1.84",
"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"
},
"./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",
"@types/ws": "^8.18.1",
"react": ">=19.0.0",
"react-devtools-core": "^7.0.1",
"typescript": "^5",
"ws": "^8.18.0"
},
"peerDependencies": {
"react": ">=19.0.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.32.0"
}
}