-
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.9 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.9 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-browser",
"version": "0.3.2",
"description": "A fast Electron browser surface for OpenTUI using the Kitty graphics protocol",
"license": "MIT",
"author": "neriousy",
"repository": {
"type": "git",
"url": "git+https://github.com/neriousy/opentui-browser.git"
},
"bugs": {
"url": "https://github.com/neriousy/opentui-browser/issues"
},
"homepage": "https://github.com/neriousy/opentui-browser#readme",
"keywords": [
"opentui",
"terminal",
"browser",
"electron",
"kitty",
"devtools"
],
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./effect": {
"types": "./dist/effect.d.ts",
"import": "./dist/effect.js"
}
},
"scripts": {
"build": "bun scripts/build.ts",
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:electron": "bun run build && bun scripts/smoke-electron.ts",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"check": "bun run format:check && bun run typecheck && bun run test && bun run build",
"test:packed": "bun run build && bun scripts/test-packed.ts",
"bench": "bun scripts/benchmark.ts",
"example": "bun run build && bun examples/basic.ts",
"prepack": "bun run build && bun run typecheck"
},
"dependencies": {
"effect": "4.0.0-beta.101",
"electron": "43.2.0"
},
"devDependencies": {
"@opentui/core": "^0.4.5",
"@types/bun": "latest",
"@types/node": "^24.0.0",
"oxfmt": "0.41.0",
"typescript": "^5"
},
"peerDependencies": {
"@opentui/core": "^0.4.5"
},
"engines": {
"bun": ">=1.3.0",
"node": ">=26.3.0"
},
"packageManager": "bun@1.3.14"
}