-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·87 lines (87 loc) · 2.41 KB
/
package.json
File metadata and controls
executable file
·87 lines (87 loc) · 2.41 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
{
"name": "remark-mdc",
"version": "3.10.0",
"description": "Remark plugin to support MDC syntax",
"keywords": [
"remark",
"mdc"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-content/remark-mdc.git"
},
"license": "MIT",
"exports": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"prepack": "unbuild",
"dev": "nuxi dev playground",
"dev:prepare": "nuxi prepare playground",
"generate": "nuxi generate playground",
"lint": "eslint",
"test:ui": "pnpm lint && vitest --ui --open=false",
"test": "vitest run",
"release": "release-it",
"typecheck": "nuxt typecheck",
"verify": "npm run dev:prepare && npm run lint && npm run test && npm run typecheck"
},
"dependencies": {
"@types/mdast": "^4.0.4",
"@types/unist": "^3.0.3",
"flat": "^6.0.1",
"mdast-util-from-markdown": "^2.0.3",
"mdast-util-to-markdown": "^2.1.2",
"micromark": "^4.0.2",
"micromark-core-commonmark": "^2.0.3",
"micromark-factory-space": "^2.0.1",
"micromark-factory-whitespace": "^2.0.1",
"micromark-util-character": "^2.1.1",
"micromark-util-types": "^2.0.2",
"parse-entities": "^4.0.2",
"scule": "^1.3.0",
"stringify-entities": "^4.0.4",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"unist-util-visit-parents": "^6.0.2",
"yaml": "^2.8.2"
},
"devDependencies": {
"@nuxt/eslint-config": "^1.15.2",
"@nuxt/kit": "^4.4.2",
"@nuxt/ui": "4.5.1",
"@nuxthub/core": "^0.10.7",
"@nuxtjs/eslint-config-typescript": "latest",
"@types/flat": "^5.0.5",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.5.0",
"eslint": "^9.39.4",
"eslint-plugin-nuxt": "latest",
"jiti": "^2.6.1",
"nuxt": "^4.4.2",
"release-it": "^19.2.4",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"remark-wiki-link": "^2.0.1",
"unbuild": "^3.6.1",
"vitest": "latest",
"vue3-json-viewer": "^2.4.1"
},
"release-it": {
"git": {
"commitMessage": "chore(release): release v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}"
},
"hooks": {
"after:bump": "npx changelogen@latest --no-commit --no-tag --output --r $(node -p \"require('./package.json').version\")"
}
},
"packageManager": "pnpm@10.32.1"
}