nuxt-alt-generator
Version:
Nuxt module that generates alt text for images using AI
68 lines • 1.72 kB
JSON
{
"name": "nuxt-alt-generator",
"version": "0.0.6",
"description": "Nuxt module that generates alt text for images using AI",
"repository": "gbyesiltas/nuxt-alt-generator",
"keywords": [
"nuxt",
"nuxt-module",
"alt-text",
"accessibility",
"seo",
"image",
"ai"
],
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "nuxt-module-build prepare",
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"peerDependencies": {
"cheerio": "^1.0.0",
"openai": "^4.96.2"
},
"dependencies": {
"@nuxt/kit": "^3.17.1",
"defu": "^6.1.4"
},
"devDependencies": {
"@nuxt/devtools": "^2.4.0",
"@nuxt/eslint-config": "^1.3.0",
"@nuxt/module-builder": "^1.0.1",
"@nuxt/schema": "^3.17.1",
"@nuxt/test-utils": "^3.17.2",
"@types/node": "latest",
"changelogen": "^0.6.1",
"eslint": "^9.25.1",
"nuxt": "^3.17.1",
"typescript": "~5.8.3",
"vitest": "^3.1.2",
"vue-tsc": "^2.2.10"
}
}