forked from nuxt/content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.89 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
{
"name": "@nuxt/content",
"version": "2.0.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"
}
},
"main": "./dist/module.cjs",
"module": "./dist/module.mjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"dev:docs": "(cd docs && nuxi dev)",
"build:docs": "(cd docs && nuxi build)",
"example": "./scripts/example.sh",
"lint": "eslint --ext .js,.ts,.vue .",
"prepack": "yarn build",
"test:coverage": "vitest --coverage",
"test:types": "tsc --build tsconfig.json",
"test:unit": "nuxi prepare test/fixtures/basic && vitest run"
},
"dependencies": {
"@nuxt/kit": "^3.0.0-rc.3",
"csvtojson": "^2.0.10",
"defu": "^6.0.0",
"destr": "^1.1.1",
"detab": "^3.0.1",
"flat": "^5.0.2",
"html-tags": "^3.2.0",
"js-yaml": "^4.1.0",
"json5": "^2.2.1",
"listhen": "^0.2.11",
"mdast-util-from-markdown": "^1.2.0",
"mdast-util-to-hast": "^12.1.1",
"mdast-util-to-markdown": "^1.3.0",
"mdurl": "^1.0.1",
"micromark": "^3.0.10",
"micromark-core-commonmark": "^1.0.6",
"micromark-factory-space": "^1.0.0",
"micromark-factory-whitespace": "^1.0.0",
"micromark-util-character": "^1.1.0",
"ohash": "^0.1.0",
"parse-entities": "^4.0.0",
"pathe": "^0.3.0",
"property-information": "^6.1.1",
"rehype-external-links": "^1.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-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"remark-squeeze-paragraphs": "^5.0.1",
"scule": "^0.2.1",
"shiki-es": "^0.1.2",
"slugify": "^1.6.5",
"stringify-entities": "^4.0.2",
"ufo": "^0.8.4",
"unctx": "^1.1.4",
"unified": "^10.1.2",
"unist-builder": "^3.0.0",
"unist-util-position": "^4.0.3",
"unist-util-visit": "^4.1.0",
"unstorage": "^0.4.1",
"ws": "^8.6.0"
},
"devDependencies": {
"@nuxt/module-builder": "^0.1.7",
"@nuxt/schema": "^3.0.0-rc.3",
"@nuxt/test-utils": "npm:@nuxt/test-utils-edge@latest",
"@nuxthq/admin": "npm:@nuxthq/admin-edge@latest",
"@nuxtjs/eslint-config-typescript": "latest",
"@types/flat": "^5.0.2",
"@types/ws": "^8.5.3",
"c8": "^7.11.3",
"eslint": "^8.16.0",
"globby": "^13.1.1",
"husky": "^8.0.1",
"jiti": "^1.13.0",
"lint-staged": "^12.4.1",
"nuxt": "^3.0.0-rc.3",
"vitest": "^0.12.9"
}
}