-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
150 lines (150 loc) · 4.11 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "@nuxtjs/mdc",
"version": "0.11.1",
"description": "Nuxt MDC module",
"repository": "nuxt-modules/mdc",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/module.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./config": {
"types": "./dist/config.d.ts",
"import": "./dist/config.mjs",
"require": "./dist/config.cjs"
},
"./runtime": {
"types": "./dist/runtime/index.d.ts",
"import": "./dist/runtime/index.js"
},
"./dist/runtime": {
"types": "./dist/runtime/index.d.ts",
"import": "./dist/runtime/index.js"
},
"./runtime/components/*": {
"types": "./dist/runtime/components/*.d.ts",
"import": "./dist/runtime/components/*"
},
"./dist/runtime/components/*": {
"types": "./dist/runtime/components/*.d.ts",
"import": "./dist/runtime/components/*"
},
"./runtime/*": {
"types": "./dist/runtime/*.d.ts",
"import": "./dist/runtime/*.js"
},
"./dist/runtime/*": {
"types": "./dist/runtime/*.d.ts",
"import": "./dist/runtime/*.js"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
],
"config": [
"./dist/config.d.ts"
]
}
},
"scripts": {
"prepack": "nuxt-module-build prepare; nuxt-module-build",
"build": "nuxt-module-build prepare; nuxt-module-build build",
"dev": "npm run dev:prepare; nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build prepare && nuxt-module-build build && nuxi prepare playground",
"dev:docs": "nuxi dev docs",
"release": "release-it",
"lint": "eslint .",
"typecheck": "nuxt typecheck",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/kit": "^3.14.1592",
"@shikijs/transformers": "^1.24.2",
"@types/hast": "^3.0.4",
"@types/mdast": "^4.0.4",
"@vue/compiler-core": "^3.5.13",
"consola": "^3.2.3",
"debug": "4.3.7",
"defu": "^6.1.4",
"destr": "^2.0.3",
"detab": "^3.0.2",
"github-slugger": "^2.0.0",
"hast-util-format": "^1.1.0",
"hast-util-to-mdast": "^10.1.1",
"hast-util-to-string": "^3.0.1",
"mdast-util-to-hast": "^13.2.0",
"micromark-util-sanitize-uri": "^2.0.1",
"ohash": "^1.1.4",
"parse5": "^7.2.1",
"pathe": "^1.1.2",
"property-information": "^6.5.0",
"rehype-external-links": "^3.0.0",
"rehype-minify-whitespace": "^6.0.2",
"rehype-raw": "^7.0.0",
"rehype-remark": "^10.0.0",
"rehype-slug": "^6.0.0",
"rehype-sort-attribute-values": "^5.0.1",
"rehype-sort-attributes": "^5.0.1",
"remark-emoji": "^5.0.1",
"remark-gfm": "^4.0.0",
"remark-mdc": "npm:[email protected]",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"remark-stringify": "^11.0.0",
"scule": "^1.3.0",
"shiki": "^1.24.2",
"ufo": "^1.5.4",
"unified": "^11.0.5",
"unist-builder": "^4.0.0",
"unist-util-visit": "^5.0.0",
"unwasm": "^0.3.9",
"vfile": "^6.0.3"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.7.3",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.14.1592",
"@nuxt/test-utils": "^3.15.1",
"@nuxt/ui": "^2.20.0",
"@nuxtjs/mdc": "link:.",
"@types/node": "^22.10.2",
"changelogen": "^0.5.7",
"eslint": "^9.16.0",
"nuxt": "^3.14.1592",
"rehype": "^13.0.2",
"release-it": "^17.10.0",
"typescript": "5.6.3",
"vitest": "^2.1.8",
"vue-tsc": "^2.1.10"
},
"resolutions": {
"@nuxtjs/mdc": "workspace:*"
},
"packageManager": "[email protected]",
"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\")"
}
}
}