peekmd 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +155 -36
- package/cli.ts +7 -0
- package/index.ts +1190 -0
- package/package.json +8 -11
- package/dist/cli.js +0 -51307
- package/dist/index.js +0 -51303
package/package.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "peekmd",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Quick markdown file previewer that looks like your GitHub README.",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Quick markdown file previewer that looks like your GitHub README. Requires Bun.",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"main": "./
|
|
6
|
+
"main": "./index.ts",
|
|
7
7
|
"bin": {
|
|
8
|
-
"peekmd": "./
|
|
8
|
+
"peekmd": "./cli.ts"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
|
-
"
|
|
11
|
+
"cli.ts",
|
|
12
|
+
"index.ts"
|
|
12
13
|
],
|
|
13
14
|
"scripts": {
|
|
14
|
-
"
|
|
15
|
-
"
|
|
15
|
+
"dev": "bun run ./cli.ts README.md",
|
|
16
|
+
"compile": "bun build ./cli.ts --compile --outfile peekmd",
|
|
16
17
|
"format": "bunx prettier --write .",
|
|
17
|
-
"prepublishOnly": "bun run build",
|
|
18
18
|
"sort": "bunx sort-package-json"
|
|
19
19
|
},
|
|
20
20
|
"keywords": [
|
|
@@ -36,9 +36,6 @@
|
|
|
36
36
|
"url": "https://github.com/HelgeSverre/peekmd/issues"
|
|
37
37
|
},
|
|
38
38
|
"homepage": "https://github.com/HelgeSverre/peekmd#readme",
|
|
39
|
-
"engines": {
|
|
40
|
-
"node": ">=18"
|
|
41
|
-
},
|
|
42
39
|
"dependencies": {
|
|
43
40
|
"highlight.js": "^11.11.1",
|
|
44
41
|
"marked": "^17.0.1"
|