nuxt-disqus
Version:
Disqus for Nuxt 3
68 lines • 1.59 kB
JSON
{
"name": "nuxt-disqus",
"version": "1.2.0",
"description": "Disqus for Nuxt 3",
"repository": "modbender/nuxt-disqus",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"keywords": [
"vue",
"vue3",
"nuxt",
"nuxt3",
"module",
"nuxt-disqus",
"disqus",
"discussion",
"comments",
"vue3-disqus"
],
"dependencies": {
"@nuxt/kit": "^4.0.1",
"defu": "^6.1.4",
"vue3-disqus": "^1.0.7"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^1.7.1",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.0.2",
"@nuxt/test-utils": "^3.19.2",
"@types/node": "^24.1.0",
"changelogen": "^0.6.2",
"eslint": "^9.32.0",
"nuxt": "^4.0.2",
"vitest": "3.2.4"
},
"scripts": {
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "pnpm lint && pnpm test && pnpm prepack && changelogen --release && pnpm publish && git push --follow-tags",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
}
}