forked from nuxt-modules/mdc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.76 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
{
"name": "@nuxtjs/mdc",
"version": "0.2.3",
"description": "Nuxt MDC module",
"repository": "nuxt-modules/mdc",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./runtime": "./dist/runtime/index.mjs",
"./dist/runtime": "./dist/runtime/index.mjs",
"./runtime/*": "./dist/runtime/*.mjs",
"./dist/runtime/*": "./dist/runtime/*.mjs"
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxi prepare playground; nuxt-module-build",
"build": "nuxi prepare playground; nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"dev:docs": "nuxi dev docs",
"release": "release-it",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/kit": "^3.7.4",
"@types/hast": "^3.0.2",
"@types/mdast": "^4.0.2",
"@vue/compiler-core": "^3.3.4",
"consola": "^3.2.3",
"defu": "^6.1.2",
"destr": "^2.0.1",
"detab": "^3.0.2",
"github-slugger": "^2.0.0",
"hast-util-to-string": "^3.0.0",
"mdast-util-to-hast": "^13.0.2",
"micromark-util-sanitize-uri": "^2.0.0",
"ohash": "^1.1.3",
"property-information": "^6.3.0",
"rehype-external-links": "^3.0.0",
"rehype-raw": "^6.1.1",
"rehype-slug": "^6.0.0",
"rehype-sort-attribute-values": "^5.0.0",
"rehype-sort-attributes": "^5.0.0",
"remark-emoji": "^4.0.0",
"remark-gfm": "^3.0.1",
"remark-mdc": "^2.0.0",
"remark-parse": "^10.0.2",
"remark-rehype": "^10.1.0",
"scule": "^1.0.0",
"shikiji": "^0.6.10",
"ufo": "^1.3.1",
"unified": "^11.0.3",
"unist-builder": "^4.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/module-builder": "^0.5.2",
"@nuxt/schema": "^3.7.4",
"@nuxt/test-utils": "^3.7.4",
"@nuxthq/ui": "^2.7.0",
"@types/mdurl": "^1.0.4",
"@types/node": "^20.8.7",
"changelogen": "^0.5.5",
"eslint": "^8.51.0",
"nuxt": "^3.7.4",
"rehype": "^13.0.1",
"release-it": "^16.2.1",
"vitest": "^0.34.6"
},
"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\")"
}
},
"publishConfig": {
"access": "public"
}
}