-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.2 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
{
"name": "readthey",
"version": "0.2.0",
"description": "Lightweight Markdown viewer with Mermaid — opens in your browser.",
"packageManager": "pnpm@10.31.0",
"type": "module",
"bin": {
"readthey": "dist/cli.js",
"rt": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"logo.png",
"asciilogo.md",
"LICENSE"
],
"scripts": {
"build:viewer": "vite build",
"build:cli": "tsc -p tsconfig.cli.json && node scripts/copy-assets.mjs",
"build": "pnpm run build:viewer && pnpm run build:cli",
"prepublishOnly": "pnpm run build",
"publish": "pnpm run build && pnpm publish --access public --no-git-checks"
},
"keywords": [
"markdown",
"mermaid",
"readme",
"cli",
"viewer"
],
"author": "bryanthaboi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bryanthaboi/readthey.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"cac": "^6.7.14",
"open": "^10.1.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"marked": "^15.0.4",
"mermaid": "^11.4.1",
"typescript": "^5.7.2",
"vite": "^6.0.3"
}
}