serve-my-md 1.1.3 → 1.1.5
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/package.json +20 -21
- package/web/vite.config.ts +1 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "serve-my-md",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Generate beautiful SEO-friendly static websites from Markdown files.",
|
|
6
6
|
"repository": {
|
|
@@ -50,26 +50,8 @@
|
|
|
50
50
|
"prepublishOnly": "pnpm build"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@tanstack/devtools-vite": "^0.3.11",
|
|
54
|
-
"@tanstack/eslint-config": "^0.3.0",
|
|
55
|
-
"@testing-library/dom": "^10.4.0",
|
|
56
|
-
"@testing-library/react": "^16.2.0",
|
|
57
|
-
"@types/markdown-it": "^14",
|
|
58
|
-
"@types/markdown-it-footnote": "^3.0.4",
|
|
59
53
|
"@types/node": "^24.10.1",
|
|
60
|
-
"
|
|
61
|
-
"@types/react": "^19.2.0",
|
|
62
|
-
"@types/react-dom": "^19.2.0",
|
|
63
|
-
"@vitejs/plugin-react": "^5.0.4",
|
|
64
|
-
"babel-plugin-react-compiler": "^1.0.0",
|
|
65
|
-
"esbuild": "^0.27.3",
|
|
66
|
-
"jsdom": "^27.0.0",
|
|
67
|
-
"prettier": "^3.6.2",
|
|
68
|
-
"tsup": "^8.5.1",
|
|
69
|
-
"typescript": "^5.9.3",
|
|
70
|
-
"vite-tsconfig-paths": "^6.1.1",
|
|
71
|
-
"vitest": "^4.0.15",
|
|
72
|
-
"web-vitals": "^5.1.0"
|
|
54
|
+
"tsup": "^8.5.1"
|
|
73
55
|
},
|
|
74
56
|
"dependencies": {
|
|
75
57
|
"@inquirer/prompts": "^7.10.1",
|
|
@@ -80,13 +62,26 @@
|
|
|
80
62
|
"@radix-ui/react-slot": "^1.2.4",
|
|
81
63
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
82
64
|
"@tailwindcss/vite": "^4.0.6",
|
|
65
|
+
"@tanstack/devtools-vite": "^0.3.11",
|
|
66
|
+
"@tanstack/eslint-config": "^0.3.0",
|
|
83
67
|
"@tanstack/react-devtools": "^0.7.0",
|
|
84
68
|
"@tanstack/react-router": "^1.132.0",
|
|
85
69
|
"@tanstack/react-router-devtools": "^1.132.0",
|
|
70
|
+
"@testing-library/dom": "^10.4.0",
|
|
71
|
+
"@testing-library/react": "^16.2.0",
|
|
72
|
+
"@types/markdown-it": "^14",
|
|
73
|
+
"@types/markdown-it-footnote": "^3.0.4",
|
|
86
74
|
"@types/path-browserify": "^1.0.3",
|
|
75
|
+
"@types/prismjs": "^1.26.5",
|
|
76
|
+
"@types/react": "^19.2.0",
|
|
77
|
+
"@types/react-dom": "^19.2.0",
|
|
78
|
+
"@vitejs/plugin-react": "^5.0.4",
|
|
79
|
+
"babel-plugin-react-compiler": "^1.0.0",
|
|
87
80
|
"class-variance-authority": "^0.7.1",
|
|
88
81
|
"clsx": "^2.1.1",
|
|
89
82
|
"commander": "^14.0.3",
|
|
83
|
+
"esbuild": "^0.27.3",
|
|
84
|
+
"jsdom": "^27.0.0",
|
|
90
85
|
"lucide-react": "^0.544.0",
|
|
91
86
|
"markdown-it": "^14.1.1",
|
|
92
87
|
"markdown-it-footnote": "^4.0.0",
|
|
@@ -95,6 +90,7 @@
|
|
|
95
90
|
"markdown-it-task-lists": "^2.1.1",
|
|
96
91
|
"minimatch": "^10.2.0",
|
|
97
92
|
"path-browserify": "^1.0.1",
|
|
93
|
+
"prettier": "^3.6.2",
|
|
98
94
|
"prismjs": "^1.30.0",
|
|
99
95
|
"react": "^19.2.0",
|
|
100
96
|
"react-dom": "^19.2.0",
|
|
@@ -102,7 +98,10 @@
|
|
|
102
98
|
"tailwind-merge": "^3.0.2",
|
|
103
99
|
"tailwindcss": "^4.0.6",
|
|
104
100
|
"tw-animate-css": "^1.3.6",
|
|
105
|
-
"
|
|
101
|
+
"typescript": "^5.9.3",
|
|
102
|
+
"vite": "^8.0.16",
|
|
103
|
+
"vitest": "^4.0.15",
|
|
104
|
+
"web-vitals": "^5.1.0"
|
|
106
105
|
},
|
|
107
106
|
"volta": {
|
|
108
107
|
"node": "26.1.0",
|
package/web/vite.config.ts
CHANGED
|
@@ -3,7 +3,6 @@ import { defineConfig } from 'vite';
|
|
|
3
3
|
import { devtools } from '@tanstack/devtools-vite';
|
|
4
4
|
import viteReact from '@vitejs/plugin-react';
|
|
5
5
|
import tailwindcss from '@tailwindcss/vite';
|
|
6
|
-
import tsconfigPaths from "vite-tsconfig-paths";
|
|
7
6
|
import out from './src/.generated/output.json' with { type: 'json' };
|
|
8
7
|
|
|
9
8
|
// https://vitejs.dev/config/
|
|
@@ -16,8 +15,7 @@ export default defineConfig({
|
|
|
16
15
|
plugins: ['babel-plugin-react-compiler']
|
|
17
16
|
}
|
|
18
17
|
}),
|
|
19
|
-
tailwindcss()
|
|
20
|
-
tsconfigPaths()
|
|
18
|
+
tailwindcss()
|
|
21
19
|
],
|
|
22
20
|
root: fileURLToPath(new URL('.', import.meta.url)),
|
|
23
21
|
build: {
|