nuxt-authorization
Version:
Authorization module for managing permissions on the Nuxt app and the Nitro server.
66 lines (65 loc) • 1.89 kB
JSON
{
"name": "nuxt-authorization",
"version": "0.3.5",
"description": "Authorization module for managing permissions on the Nuxt app and the Nitro server.",
"author": "Estéban Soubiran <esteban@soubiran.dev> (https://soubiran.dev)",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/barbapapazes/nuxt-authorization.git"
},
"keywords": [
"nuxt",
"nitro",
"module",
"authorization"
],
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
},
"./utils": {
"types": "./dist/utils/index.d.mts",
"import": "./dist/utils/index.mjs"
}
},
"main": "./dist/module.mjs",
"types": "./dist/types.d.mts",
"files": [
"dist"
],
"scripts": {
"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 .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"dependencies": {
"@nuxt/kit": "^3.17.7"
},
"devDependencies": {
"@nuxt/devtools": "^2.6.2",
"@nuxt/eslint-config": "^1.5.2",
"@nuxt/module-builder": "^1.0.1",
"@nuxt/schema": "^3.17.7",
"@nuxt/test-utils": "^3.19.2",
"@types/node": "^22.16.4",
"@vue/test-utils": "^2.4.6",
"changelogen": "^0.6.2",
"eslint": "^9.31.0",
"nuxt": "^3.17.7",
"playwright": "^1.54.1",
"typescript": "^5.8.3",
"vitest": "^3.2.4",
"vue-tsc": "^2.2.12"
},
"packageManager": "pnpm@10.13.1"
}