115 lines
3.3 KiB
JSON
115 lines
3.3 KiB
JSON
{
|
|
"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.13.2",
|
|
"@nuxtjs/mdc": "^0.9.2",
|
|
"@vueuse/core": "^11.1.0",
|
|
"@vueuse/head": "^2.0.0",
|
|
"@vueuse/nuxt": "^11.1.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.0",
|
|
"slugify": "^1.6.6",
|
|
"socket.io-client": "^4.8.0",
|
|
"ufo": "^1.5.4",
|
|
"unist-util-stringify-position": "^4.0.0",
|
|
"unstorage": "^1.12.0",
|
|
"ws": "^8.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"@nuxt/content": "link:.",
|
|
"@nuxt/eslint-config": "^0.6.0",
|
|
"@nuxt/module-builder": "^0.8.4",
|
|
"@nuxt/schema": "3.13.2",
|
|
"@nuxt/test-utils": "3.14.3",
|
|
"@nuxthq/studio": "^2.1.1",
|
|
"@nuxtjs/tailwindcss": "^6.12.1",
|
|
"@types/ws": "^8.5.12",
|
|
"c8": "^10.1.2",
|
|
"csvtojson": "^2.0.10",
|
|
"eslint": "^9.12.0",
|
|
"globby": "^14.0.2",
|
|
"husky": "^9.1.6",
|
|
"jiti": "^2.3.3",
|
|
"lint-staged": "^15.2.10",
|
|
"nuxt": "3.13.2",
|
|
"rehype-figure": "^1.0.1",
|
|
"rehype-wrap-all": "^1.1.0",
|
|
"release-it": "^17.9.0",
|
|
"remark-oembed": "^1.2.2",
|
|
"vitest": "^2.1.3",
|
|
"vue-docgen-web-types": "^0.1.8",
|
|
"vue-tsc": "2.1.6"
|
|
},
|
|
"packageManager": "pnpm@9.12.1",
|
|
"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\")"
|
|
}
|
|
}
|
|
}
|