-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.42 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "opentui-math",
"version": "0.1.0",
"description": "Beautiful LaTeX math rendering for OpenTUI",
"repository": {
"type": "git",
"url": "git+https://github.com/neriousy/opentui-math.git"
},
"homepage": "https://github.com/neriousy/opentui-math#readme",
"bugs": {
"url": "https://github.com/neriousy/opentui-math/issues"
},
"keywords": [
"opentui",
"latex",
"math",
"terminal",
"tui",
"unicode"
],
"license": "MIT",
"type": "module",
"module": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/react.js"
},
"./solid": {
"types": "./dist/solid.d.ts",
"import": "./dist/solid.js"
},
"./graphics": {
"types": "./dist/graphics/index.d.ts",
"import": "./dist/graphics/index.js"
},
"./graphics/react": {
"types": "./dist/graphics/react.d.ts",
"import": "./dist/graphics/react.js"
},
"./graphics/solid": {
"types": "./dist/graphics/solid.d.ts",
"import": "./dist/graphics/solid.js"
}
},
"scripts": {
"build": "bun scripts/build.ts",
"check": "bunx tsc -p tsconfig.check.json --noEmit",
"test": "bun test tests/parser.test.ts tests/render.test.ts tests/renderable.test.ts tests/showcase.test.ts tests/stream.test.ts tests/graphics.test.ts",
"example": "bun examples/showcase.ts",
"demo": "bun examples/opentui.ts",
"preview:png": "bun examples/render-png.ts",
"demo:graphics": "bun examples/opentui-graphics.ts",
"demo:stream": "bun examples/opentui-stream.ts",
"prepublishOnly": "bun run test && bun run check && bun run build"
},
"peerDependencies": {
"@opentui/core": ">=0.4.5",
"@opentui/react": ">=0.4.5",
"@opentui/solid": ">=0.4.5"
},
"peerDependenciesMeta": {
"@opentui/react": {
"optional": true
},
"@opentui/solid": {
"optional": true
}
},
"devDependencies": {
"@opentui/core": "0.4.5",
"@opentui/react": "0.4.5",
"@opentui/solid": "0.4.5",
"@types/bun": "latest",
"typescript": "^5.9.2"
},
"engines": {
"bun": ">=1.3.0",
"node": ">=20"
},
"dependencies": {
"@resvg/resvg-js": "2.6.2",
"mathjax": "4.1.3"
}
}