forked from cameronhunter/ink-markdown
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.25 KB
/
package.json
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
{
"name": "ink-markdown",
"version": "1.0.4",
"description": "Render markdown text using Ink",
"main": "./build/index.js",
"author": "Cameron Hunter <[email protected]>",
"license": "MIT",
"keywords": [
"ink-component",
"ink",
"component",
"markdown",
"react",
"jsx",
"terminal",
"term",
"console",
"command-line"
],
"scripts": {
"prebuild": "rm -rf ./build",
"build": "tsc",
"format": "prettier --write ./**/*.{js,json,md,ts,tsx}",
"test": "vitest",
"preversion": "yarn build",
"demo": "ts-node --transpile-only ./demo/index.tsx"
},
"files": [
"./build"
],
"type": "module",
"dependencies": {
"marked": "^11.1.0",
"marked-terminal": "^6.2.0"
},
"devDependencies": {
"@types/dedent": "^0.7.2",
"@types/ink": "^2.0.3",
"@types/marked": "^5.0.2",
"@types/marked-terminal": "^6.0.1",
"@types/react": "^18.2.45",
"dedent": "^1.5.1",
"ink": "^4.4.1",
"ink-testing-library": "^3.0.0",
"jest-snapshot-serializer-ansi": "^2.1.0",
"prettier": "^3.1.1",
"react": ">=18.2.0",
"ts-node": "10.9.2",
"typescript": "5.3.3",
"vitest": "^1.1.0"
},
"peerDependencies": {
"ink": "^4.4.1",
"react": ">=16.8.0"
}
}