-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·78 lines (78 loc) · 2.12 KB
/
package.json
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
{
"name": "remark-mdc",
"version": "3.2.1",
"description": "Remark plugin to support MDC syntax",
"keywords": [
"remark",
"mdc"
],
"repository": "https://github.com/nuxtlabs/remark-mdc",
"license": "MIT",
"exports": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "nuxi dev playground",
"dev:prepare": "nuxi prepare playground",
"generate": "nuxi generate playground",
"lint": "eslint --ext .js,.ts,.vue .",
"test": "pnpm lint && vitest run",
"prepack": "pnpm build",
"release": "release-it"
},
"dependencies": {
"@types/mdast": "^4.0.3",
"@types/unist": "^3.0.2",
"flat": "^6.0.1",
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-to-markdown": "^2.1.0",
"micromark": "^4.0.0",
"micromark-core-commonmark": "^2.0.0",
"micromark-factory-space": "^2.0.0",
"micromark-factory-whitespace": "^2.0.0",
"micromark-util-character": "^2.1.0",
"micromark-util-types": "^2.0.0",
"parse-entities": "^4.0.1",
"scule": "^1.3.0",
"stringify-entities": "^4.0.3",
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0",
"unist-util-visit-parents": "^6.0.1",
"yaml": "^2.4.2"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/kit": "^3.11.1",
"@nuxtjs/eslint-config-typescript": "latest",
"@types/flat": "^5.0.5",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.30",
"eslint": "^8.57.0",
"eslint-plugin-nuxt": "latest",
"jiti": "^1.21.0",
"nuxt": "^3.11.1",
"release-it": "^17.1.1",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"remark-wiki-link": "^2.0.1",
"unbuild": "^2.0.0",
"vitest": "latest"
},
"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\")"
}
}
}