-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 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
79
80
81
{
"name": "nuxt-markdown-render",
"version": "2.1.0",
"description": "A simple, lightweight markdown-it wrapper for Nuxt written in pure typescript.",
"repository": "https://github.com/sandros94/nuxt-markdown-render",
"keywords": [
"nuxt",
"nuxt-module",
"md",
"markdown",
"markdown-it"
],
"license": "MIT",
"type": "module",
"author": {
"name": "Sandro Circi",
"email": "[email protected]"
},
"build": {
"externals": [
"defu"
]
},
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:preview": "nuxi preview playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "nr lint && nr test && nr prepack && changelogen --release && na publish && git push --follow-tags",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"dependencies": {
"@nuxt/kit": "^3.13.0",
"@shikijs/markdown-it": "^1.2.0",
"@vueuse/core": "^10.9.0",
"markdown-it": "14.0.0",
"markdown-it-anchor": "^8.6.7",
"markdown-it-github-alerts": "^0.3.0",
"markdown-it-mdc": "^0.2.3"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.5.3",
"@nuxt/module-builder": "^0.8.3",
"@nuxt/schema": "^3.13.0",
"@nuxt/test-utils": "^3.14.1",
"@types/markdown-it": "^14.0.1",
"@types/node": "^22.5.1",
"changelogen": "^0.5.5",
"eslint": "^9.9.1",
"nuxt": "^3.13.0",
"typescript": "latest",
"vitest": "^2.0.5",
"vue-tsc": "^2.1.0"
},
"pnpm": {
"overrides": {
"uc.micro": "2.0.0"
}
},
"resolutions": {
"nuxt-markdown-render": "workspace:*"
}
}