simple-vue-auth/package.json

68 lines
1.7 KiB
JSON

{
"name": "@bithero/simple-vue-auth",
"version": "0.1.0",
"license": "AGPL-3.0-or-later",
"description": "",
"repository": {
"type": "git",
"url": "https://codeark.it/bithero-agency-js/simple-vue-auth.git"
},
"bugs": {
"url": "https://codeark.it/bithero-agency-js/simple-vue-auth/issues"
},
"homepage": "https://codeark.it/bithero-agency-js/simple-vue-auth",
"keywords": [
"front-end",
"vue",
"vue-component",
"component",
"components",
"ecosystem-vue",
"auth",
"authentication"
],
"files": [
"dist"
],
"type": "module",
"main": "dist/simple-vue-auth.cjs",
"types": "dist/index.d.ts",
"module": "dist/simple-vue-auth.js",
"exports": {
".": {
"require": "./dist/simple-vue-auth.cjs",
"import": "./dist/simple-vue-auth.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "vite ./example",
"build": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint ./src"
},
"dependencies": {
"vue": "^3.4.21"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-typescript": "^12.0.0",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.22.0",
"typescript": "^5.3.0",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.7.3",
"vue-router": "^4.3.0",
"vue-tsc": "^2.0.4"
},
"peerDependencies": {
"vue-router": "^4.3.0"
},
"peerDependenciesMeta": {
"vue-router": {
"optional": true
}
}
}