-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.2 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@comark/markdown-it",
"type": "module",
"version": "0.3.4",
"packageManager": "pnpm@10.33.0",
"description": "Comark (Component in Markdown) support for markdown-it",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/comarkdown/markdown-it-comark#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/comarkdown/markdown-it-comark.git"
},
"bugs": "https://github.com/comarkdown/markdown-it-comark/issues",
"keywords": [
"markdown",
"markdown-it-plugin"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "bumpp",
"start": "tsx src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"verify": "pnpm run lint && pnpm run test --run && pnpm run typecheck"
},
"peerDependencies": {
"@types/markdown-it": "*",
"markdown-it": "^14.0.0"
},
"dependencies": {
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@antfu/eslint-config": "^8.2.0",
"@antfu/ni": "^30.0.0",
"@antfu/utils": "^9.3.0",
"@mdit-vue/plugin-component": "^3.0.2",
"@mdit-vue/plugin-frontmatter": "^3.0.2",
"@types/js-yaml": "^4.0.9",
"@types/markdown-it-container": "^4.0.0",
"@types/node": "^25.6.0",
"bumpp": "^11.0.1",
"eslint": "^10.2.0",
"lint-staged": "^16.4.0",
"markdown-it": "^14.1.1",
"markdown-it-container": "^4.0.0",
"markdown-it-task-checkbox": "^1.0.6",
"pnpm": "^10.29.2",
"prettier": "^3.8.3",
"scule": "^1.3.0",
"simple-git-hooks": "^2.13.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"unbuild": "^3.6.1",
"vite": "^8.0.8",
"vitest": "^4.1.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}