forked from nuxt/content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.51 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
{
"name": "@nuxt/content",
"version": "2.5.2",
"description": "Write your content inside your Nuxt app",
"keywords": [
"nuxt",
"content",
"module"
],
"repository": "nuxt/content",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./transformers": "./dist/runtime/transformers/index.mjs",
"./transformers/*": "./dist/runtime/transformers/*.mjs"
},
"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 && 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 --ext .js,.ts,.vue .",
"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.2.3",
"consola": "^2.15.3",
"defu": "^6.1.2",
"destr": "^1.2.2",
"detab": "^3.0.2",
"json5": "^2.2.3",
"knitwork": "^1.0.0",
"listhen": "^1.0.3",
"mdast-util-to-hast": "^12.3.0",
"mdurl": "^1.0.1",
"ohash": "^1.0.0",
"pathe": "^1.1.0",
"property-information": "^6.2.0",
"rehype-external-links": "^2.0.1",
"rehype-raw": "^6.1.1",
"rehype-slug": "^5.1.0",
"rehype-sort-attribute-values": "^4.0.0",
"rehype-sort-attributes": "^4.0.0",
"remark-emoji": "3.1.1",
"remark-gfm": "^3.0.1",
"remark-mdc": "^1.1.3",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"remark-squeeze-paragraphs": "^5.0.1",
"scule": "^1.0.0",
"shiki-es": "^0.2.0",
"slugify": "^1.6.5",
"socket.io-client": "^4.6.1",
"ufo": "^1.1.1",
"unified": "^10.1.2",
"unist-builder": "^3.0.1",
"unist-util-position": "^4.0.4",
"unist-util-visit": "^4.1.2",
"unstorage": "^1.3.0",
"ws": "^8.12.1"
},
"devDependencies": {
"@nuxt/module-builder": "^0.2.1",
"@nuxt/schema": "3.2.3",
"@nuxt/test-utils": "3.2.3",
"@nuxtjs/eslint-config-typescript": "latest",
"@types/mdurl": "^1.0.2",
"@types/ws": "^8.5.4",
"c8": "^7.13.0",
"csvtojson": "^2.0.10",
"eslint": "^8.35.0",
"globby": "^13.1.3",
"husky": "^8.0.3",
"jiti": "^1.17.2",
"lint-staged": "^13.1.2",
"nuxt": "3.2.3",
"rehype-figure": "^1.0.1",
"release-it": "^15.7.0",
"remark-oembed": "^1.2.2",
"vitest": "^0.29.2",
"vue-docgen-web-types": "^0.1.8"
},
"packageManager": "[email protected]",
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"vue": "^3.2.45"
},
"ignoreMissing": [
"webpack",
"vue"
]
}
},
"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\")"
}
}
}