-
Notifications
You must be signed in to change notification settings - Fork 594
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.96 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
{
"name": "@opentui/solid",
"version": "0.4.1",
"description": "SolidJS renderer for OpenTUI",
"repository": {
"type": "git",
"url": "https://github.com/anomalyco/opentui",
"directory": "packages/solid"
},
"module": "index.ts",
"type": "module",
"private": true,
"main": "index.ts",
"license": "MIT",
"scripts": {
"build": "bun scripts/build.ts",
"build:examples": "bun examples/build.ts",
"publish": "bun scripts/publish.ts",
"test:dist": "bun scripts/test-packed-consumer.ts",
"test:js:node": "bun scripts/test-node.ts",
"test": "bun test"
},
"exports": {
".": {
"types": "./index.ts",
"import": "./index.ts"
},
"./preload": {
"import": "./scripts/preload.ts"
},
"./bun-plugin": {
"import": "./scripts/solid-plugin.ts"
},
"./runtime-plugin-support": {
"types": "./scripts/runtime-plugin-support.ts",
"import": "./scripts/runtime-plugin-support.ts"
},
"./runtime-plugin-support/configure": {
"types": "./scripts/runtime-plugin-support-configure.ts",
"import": "./scripts/runtime-plugin-support-configure.ts"
},
"./components": {
"types": "./components.ts",
"import": "./components.ts"
},
"./jsx-runtime": {
"types": "./jsx-runtime.d.ts",
"import": "./jsx-runtime.ts"
},
"./jsx-dev-runtime": {
"types": "./jsx-dev-runtime.d.ts",
"import": "./jsx-dev-runtime.ts"
}
},
"devDependencies": {
"@opentui/keymap": "workspace:*",
"@types/babel__core": "7.20.5",
"@types/bun": "latest",
"@types/node": "^24.0.0",
"solid-js": "1.9.12",
"typescript": "^5"
},
"dependencies": {
"@babel/core": "7.28.0",
"@babel/preset-typescript": "7.27.1",
"@opentui/core": "workspace:*",
"babel-plugin-module-resolver": "5.0.2",
"babel-preset-solid": "1.9.12",
"entities": "7.0.1",
"s-js": "^0.4.9"
},
"peerDependencies": {
"solid-js": "1.9.12"
}
}