stream-markdown-parser 0.0.1

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 ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "stream-markdown-parser",
3
+ "type": "module",
4
+ "version": "0.0.1",
5
+ "description": "Framework-agnostic markdown parser - can be used with Vue, React, or any other framework",
6
+ "author": "Simon He",
7
+ "license": "MIT",
8
+ "homepage": "https://github.com/Simon-He95/vue-markdown-render#readme",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/Simon-He95/vue-markdown-render.git",
12
+ "directory": "packages/parser"
13
+ },
14
+ "bugs": {
15
+ "url": "https://github.com/Simon-He95/vue-markdown-render/issues"
16
+ },
17
+ "keywords": [
18
+ "markdown",
19
+ "parser",
20
+ "stream",
21
+ "markdown-it",
22
+ "vue",
23
+ "react"
24
+ ],
25
+ "sideEffects": false,
26
+ "exports": {
27
+ ".": {
28
+ "types": "./dist/index.d.ts",
29
+ "import": "./dist/index.js",
30
+ "require": "./dist/index.js"
31
+ }
32
+ },
33
+ "main": "./dist/index.js",
34
+ "module": "./dist/index.js",
35
+ "types": "./dist/index.d.ts",
36
+ "files": [
37
+ "dist"
38
+ ],
39
+ "engines": {
40
+ "node": ">=16"
41
+ },
42
+ "scripts": {
43
+ "build": "vite build",
44
+ "typecheck": "tsc --noEmit"
45
+ },
46
+ "peerDependencies": {
47
+ "markdown-it": "^14.1.0",
48
+ "markdown-it-container": "^4.0.0"
49
+ },
50
+ "peerDependenciesMeta": {
51
+ "markdown-it": {
52
+ "optional": false
53
+ },
54
+ "markdown-it-container": {
55
+ "optional": true
56
+ }
57
+ },
58
+ "devDependencies": {
59
+ "@types/markdown-it": "^14.1.2",
60
+ "@types/markdown-it-container": "^2.0.10",
61
+ "markdown-it": "^14.1.0",
62
+ "markdown-it-container": "^4.0.0",
63
+ "rollup": "^3.29.5",
64
+ "rollup-plugin-dts": "^5.3.1",
65
+ "typescript": "^5.9.3",
66
+ "vite": "^7.1.11",
67
+ "vite-plugin-dts": "^4.5.4"
68
+ }
69
+ }