-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.11 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": "bare-tui-markdown",
"version": "0.0.1",
"description": "A limited markdown renderer for bare-tui",
"main": "index.js",
"exports": {
"./package": "./package.json",
".": "./index.js",
"./theme": "./theme.js",
"./sanitize": "./sanitize.js"
},
"files": [
"package.json",
"index.js",
"sanitize.js",
"blocks.js",
"inline.js",
"wrap.js",
"render.js",
"theme.js",
"examples",
"README.md"
],
"dependencies": {
"bare-tui": "^0.0.2"
},
"devDependencies": {
"brittle": "^3.19.0",
"lunte": "^1.2.0",
"prettier": "^3.6.2",
"prettier-config-holepunch": "^2.0.0"
},
"scripts": {
"format": "prettier --write . && lunte --fix",
"lint": "prettier --check . && lunte",
"test": "brittle-bare --coverage test/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/holepunchto/bare-tui-markdown.git"
},
"author": "Holepunch",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/holepunchto/bare-tui-markdown/issues"
},
"homepage": "https://github.com/holepunchto/bare-tui-markdown"
}