forked from nuxt/content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 3.62 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
{
"name": "@nuxt/content",
"version": "2.7.1",
"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.6.3",
"consola": "^3.2.3",
"defu": "^6.1.2",
"destr": "^2.0.0",
"detab": "^3.0.2",
"json5": "^2.2.3",
"knitwork": "^1.0.0",
"listhen": "^1.1.1",
"mdast-util-to-hast": "^12.3.0",
"mdurl": "^1.0.1",
"ohash": "^1.1.2",
"pathe": "^1.1.1",
"property-information": "^6.2.0",
"rehype-external-links": "^2.1.0",
"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.2",
"remark-gfm": "^3.0.1",
"remark-mdc": "^1.1.3",
"remark-parse": "^10.0.2",
"remark-rehype": "^10.1.0",
"remark-squeeze-paragraphs": "^5.0.1",
"scule": "^1.0.0",
"shiki-es": "^0.14.0",
"slugify": "^1.6.6",
"socket.io-client": "^4.7.1",
"ufo": "^1.1.2",
"unified": "^10.1.2",
"unist-builder": "^4.0.0",
"unist-util-position": "^5.0.0",
"unist-util-stringify-position": "^4.0.0",
"unist-util-visit": "^5.0.0",
"unstorage": "^1.8.0",
"ws": "^8.13.0"
},
"devDependencies": {
"@nuxt/module-builder": "^0.4.0",
"@nuxt/schema": "3.6.3",
"@nuxt/test-utils": "3.6.3",
"@nuxthq/studio": "^0.13.4",
"@nuxtjs/eslint-config-typescript": "latest",
"@types/mdurl": "^1.0.2",
"@types/ws": "^8.5.5",
"c8": "^8.0.0",
"csvtojson": "^2.0.10",
"eslint": "^8.45.0",
"globby": "^13.2.2",
"husky": "^8.0.3",
"jiti": "^1.19.1",
"lint-staged": "^13.2.3",
"nuxt": "3.6.3",
"rehype-figure": "^1.0.1",
"rehype-wrap-all": "^1.1.0",
"release-it": "^16.1.2",
"remark-oembed": "^1.2.2",
"vitest": "^0.33.0",
"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\")"
}
}
}