@konnec/vue-eloquent
Version:
An interface for Vue and Laravel Eloquent through API
105 lines (104 loc) • 2.82 kB
JSON
{
"name": "@konnec/vue-eloquent",
"version": "1.4.5",
"author": "Christian D'Aquino",
"license": "MIT",
"keywords": [
"Vue",
"Laravel",
"Api",
"Eloquent",
"ORM",
"Model",
"Validation",
"Broadcast",
"Vuelidate",
"Echo",
"DevTools"
],
"description": "An interface for Vue and Laravel Eloquent through API",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"test:unit": "vitest",
"test:unit:ci": "vitest run --coverage.enabled=true",
"test:unit:ui": "vitest --ui --coverage.enabled=true --api 9527",
"build-only": "vite build",
"type-check": "vue-tsc -p tsconfig.json --composite false",
"lint": "eslint -c ./eslint.config.js --fix \"./src*/**/*.{ts,js,cjs,mjs,vue}\""
},
"dependencies": {
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"axios": "^1.7.9",
"laravel-echo": "^1.17.1",
"lodash": "^4.17.21",
"uuid": "^11.0.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@stylistic/eslint-plugin-js": "^2.12.1",
"@types/jsdom": "^21.1.7",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-istanbul": "^2.1.8",
"@vitest/eslint-plugin": "^1.1.20",
"@vitest/ui": "^2.1.8",
"@vue/devtools-api": "^7.6.8",
"@vue/eslint-config-typescript": "^14.1.4",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.14.0",
"jsdom": "^25.0.1",
"msw": "^2.7.0",
"npm-run-all": "^4.1.5",
"pinia": "^2.3.0",
"prettier": "^3.4.2",
"pusher-js": "^8.3.0",
"pusher-js-mock": "^0.3.8",
"typescript": "^5.7.2",
"vite": "^6.0.5",
"vite-plugin-dts": "^4.4.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8",
"vue": "^3.5.13",
"vue-tsc": "^2.1.10"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/vue-eloquent.umd.cjs",
"module": "./dist/vue-eloquent.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vue-eloquent.js",
"require": "./dist/vue-eloquent.umd.cjs"
}
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/cimd/vue-eloquent.git"
},
"nyc": {
"reporter": [
"lcov"
]
},
"bugs": {
"url": "https://github.com/cimd/vue-eloquent/issues"
},
"homepage": "https://vue-eloquent.netlify.app"
}