forked from nuxt/content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.98 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
{
"name": "@nuxt/content",
"version": "2.1.0",
"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",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground/basic",
"dev:fixtures": "./scripts/fixture.sh",
"build": "nuxt-module-build && yarn 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 .",
"prepack": "yarn 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.0.0-rc.9",
"consola": "^2.15.3",
"defu": "^6.1.0",
"destr": "^1.1.1",
"detab": "^3.0.1",
"html-tags": "^3.2.0",
"json5": "^2.2.1",
"knitwork": "^0.1.2",
"listhen": "^0.2.15",
"mdast-util-to-hast": "^12.2.1",
"mdurl": "^1.0.1",
"ohash": "^0.1.5",
"pathe": "^0.3.7",
"property-information": "^6.1.1",
"rehype-external-links": "^2.0.1",
"rehype-raw": "^6.1.1",
"rehype-slug": "^5.0.1",
"rehype-sort-attribute-values": "^4.0.0",
"rehype-sort-attributes": "^4.0.0",
"remark-emoji": "^3.0.2",
"remark-gfm": "^3.0.1",
"remark-mdc": "^1.0.7",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"remark-squeeze-paragraphs": "^5.0.1",
"scule": "^0.3.2",
"shiki-es": "^0.1.2",
"slugify": "^1.6.5",
"ufo": "^0.8.5",
"unified": "^10.1.2",
"unist-builder": "^3.0.0",
"unist-util-position": "^4.0.3",
"unist-util-visit": "^4.1.1",
"unstorage": "^0.5.6",
"ws": "^8.8.1"
},
"devDependencies": {
"@nuxt/module-builder": "^0.1.7",
"@nuxt/schema": "^3.0.0-rc.9",
"@nuxt/test-utils": "^3.0.0-rc.9",
"@nuxthq/admin": "npm:@nuxthq/admin-edge@latest",
"@nuxtjs/eslint-config-typescript": "latest",
"@types/ws": "^8.5.3",
"c8": "^7.12.0",
"csvtojson": "^2.0.10",
"eslint": "^8.23.0",
"globby": "^13.1.2",
"husky": "^8.0.1",
"jiti": "^1.15.0",
"lint-staged": "^13.0.3",
"nuxt": "^3.0.0-rc.9",
"rehype-figure": "^1.0.1",
"remark-oembed": "^1.2.2",
"vitest": "^0.23.1",
"vue-docgen-web-types": "^0.1.8"
}
}