-
-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.89 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.89 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "stream-markdown-parser",
"type": "module",
"version": "0.0.69",
"packageManager": "pnpm@10.30.3",
"description": "Pure markdown parser and renderer utilities with streaming support - framework agnostic",
"author": "Simon He",
"license": "MIT",
"homepage": "https://github.com/Simon-He95/markstream-vue/tree/main/packages/markdown-parser",
"repository": {
"type": "git",
"url": "git+https://github.com/Simon-He95/markstream-vue.git",
"directory": "packages/markdown-parser"
},
"bugs": {
"url": "https://github.com/Simon-He95/markstream-vue/issues"
},
"keywords": [
"markdown",
"markdown-it",
"markdown-it-ts",
"parser",
"markdown-parser",
"markdown-renderer",
"ast",
"markdown-ast",
"streaming",
"progressive",
"framework-agnostic"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"test": "vitest",
"test:run": "vitest --run",
"typecheck": "tsc --noEmit",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"prepublishOnly": "pnpm run build",
"release": "bumpp --commit --no-tag --no-push && npm publish --access public && node ../../scripts/tag-package.mjs --package-json package.json --push"
},
"dependencies": {
"markdown-it-container": "^4.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-ins": "^4.0.0",
"markdown-it-mark": "^4.0.0",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"markdown-it-task-checkbox": "^1.0.6",
"markdown-it-ts": "0.0.5"
},
"devDependencies": {
"@types/node": "^22.19.15",
"tsdown": "^0.15.12",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}