-
-
Notifications
You must be signed in to change notification settings - Fork 623
/
package.json
114 lines (114 loc) · 3.28 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
{
"name": "@nuxt/content",
"version": "2.13.4",
"description": "Write your content inside your Nuxt app",
"homepage": "https://content.nuxt.com",
"keywords": [
"nuxt",
"content",
"module"
],
"repository": "nuxt/content",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./transformers": "./dist/runtime/transformers/index.js",
"./transformers/*": "./dist/runtime/transformers/*.js"
},
"main": "./dist/module.cjs",
"module": "./dist/module.mjs",
"types": "./dist/types.d.ts",
"web-types": "./dist/web-types.json",
"files": [
"dist"
],
"scripts": {
"dev": "./scripts/playground.sh",
"dev:build": "nuxi build playground/basic",
"prepare": "nuxi prepare playground/basic",
"dev:fixtures": "./scripts/fixture.sh",
"build": "nuxt-module-build build && pnpm build:web-types",
"build:docs": "(cd docs && nuxi build)",
"build:web-types": "vue-docgen-web-types src/runtime/components/ ./dist/web-types.json",
"example": "./scripts/example.sh",
"lint": "eslint .",
"release": "npm run lint; release-it",
"prepack": "pnpm build",
"test:coverage": "vitest --coverage",
"test:types": "tsc --build tsconfig.json",
"test": "./scripts/test.sh",
"test:unit": "nuxi prepare test/fixtures/basic && nuxi prepare test/fixtures/document-driven && vitest run"
},
"dependencies": {
"@nuxt/kit": "^3.14.159",
"@nuxtjs/mdc": "^0.9.2",
"@vueuse/core": "^11.2.0",
"@vueuse/head": "^2.0.0",
"@vueuse/nuxt": "^11.2.0",
"consola": "^3.2.3",
"defu": "^6.1.4",
"destr": "^2.0.3",
"json5": "^2.2.3",
"knitwork": "^1.1.0",
"listhen": "^1.9.0",
"mdast-util-to-string": "^4.0.0",
"mdurl": "^2.0.0",
"micromark": "^4.0.0",
"micromark-util-sanitize-uri": "^2.0.0",
"micromark-util-types": "^2.0.0",
"minisearch": "^7.1.0",
"ohash": "^1.1.4",
"pathe": "^1.1.2",
"scule": "^1.3.0",
"shiki": "^1.22.2",
"slugify": "^1.6.6",
"socket.io-client": "^4.8.1",
"ufo": "^1.5.4",
"unist-util-stringify-position": "^4.0.0",
"unstorage": "^1.13.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@nuxt/content": "link:.",
"@nuxt/eslint-config": "^0.6.1",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "3.14.159",
"@nuxt/test-utils": "3.14.4",
"@nuxthq/studio": "^2.2.1",
"@nuxtjs/tailwindcss": "^6.12.2",
"@types/ws": "^8.5.13",
"c8": "^10.1.2",
"csvtojson": "^2.0.10",
"eslint": "^9.14.0",
"globby": "^14.0.2",
"husky": "^9.1.6",
"jiti": "^2.4.0",
"lint-staged": "^15.2.10",
"nuxt": "3.14.159",
"rehype-figure": "^1.0.1",
"rehype-wrap-all": "^1.1.0",
"release-it": "^17.10.0",
"remark-oembed": "^1.2.2",
"vitest": "^2.1.4",
"vue-docgen-web-types": "^0.1.8",
"vue-tsc": "2.1.10"
},
"packageManager": "pnpm@9.12.3",
"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\")"
}
}
}