84 lines
2.1 KiB
JSON
84 lines
2.1 KiB
JSON
{
|
|
"name": "@eduvia-app/nuxt-can",
|
|
"version": "1.1.1",
|
|
"description": "Nuxt directives (`v-can`, `v-cannot`) to layer permissions without touching business v-ifs.",
|
|
"author": "Eduvia <engineering@eduvia.app>",
|
|
"homepage": "https://github.com/eduvia-app/nuxt-can#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/eduvia-app/nuxt-can/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/eduvia-app/nuxt-can.git"
|
|
},
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"keywords": [
|
|
"nuxt",
|
|
"nuxt3",
|
|
"nuxt-module",
|
|
"permissions",
|
|
"vue",
|
|
"directive",
|
|
"v-can"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"sideEffects": false,
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/types.d.mts",
|
|
"import": "./dist/module.mjs"
|
|
}
|
|
},
|
|
"main": "./dist/module.mjs",
|
|
"module": "./dist/module.mjs",
|
|
"typesVersions": {
|
|
"*": {
|
|
".": [
|
|
"./dist/types.d.mts"
|
|
]
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"scripts": {
|
|
"prepack": "nuxt-module-build build",
|
|
"dev": "npm run dev:prepare && 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"
|
|
},
|
|
"dependencies": {
|
|
"@nuxt/kit": "^4.2.1",
|
|
"@vue/language-core": "^3.1.3",
|
|
"diff": "^8.0.2"
|
|
},
|
|
"peerDependencies": {
|
|
"nuxt": "^3.0.0 || ^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@nuxt/devtools": "^3.1.0",
|
|
"@nuxt/eslint-config": "^1.10.0",
|
|
"@nuxt/module-builder": "^1.0.2",
|
|
"@nuxt/schema": "^4.2.1",
|
|
"@nuxt/test-utils": "^3.20.1",
|
|
"@types/node": "latest",
|
|
"changelogen": "^0.6.2",
|
|
"eslint": "^9.39.1",
|
|
"nuxt": "^4.2.1",
|
|
"typescript": "~5.9.3",
|
|
"vitest": "^4.0.8",
|
|
"vue-tsc": "^3.1.3"
|
|
}
|
|
}
|