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
48 lines (48 loc) · 1.1 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.1 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
{
"name": "@opentui/solid",
"version": "0.1.30",
"description": "SolidJS renderer for OpenTUI",
"repository": {
"type": "git",
"url": "https://github.com/sst/opentui",
"directory": "packages/solid"
},
"module": "index.ts",
"type": "module",
"private": true,
"main": "index.ts",
"license": "MIT",
"scripts": {
"build": "bun scripts/build.ts",
"publish": "bun scripts/publish.ts",
"test": "bun test"
},
"exports": {
".": {
"types": "./index.ts",
"import": "./index.ts"
},
"./preload": {
"import": "./scripts/preload.ts"
},
"./jsx-runtime": "./jsx-runtime.d.ts",
"./jsx-dev-runtime": "./jsx-runtime.d.ts"
},
"devDependencies": {
"@types/babel__core": "7.20.5",
"@types/bun": "latest",
"@types/node": "latest",
"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.9",
"s-js": "^0.4.9"
},
"peerDependencies": {
"solid-js": "1.9.9"
}
}