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