UNPKG

@quasar/vite-plugin

Version:

Vite plugin for Quasar Framework

78 lines 2.04 kB
{ "name": "@quasar/vite-plugin", "version": "1.9.0", "description": "Vite plugin for Quasar Framework", "type": "module", "exports": { ".": { "types": "./index.d.ts", "import": "./src/index.js", "require": "./dist/index.cjs" }, "./*": "./*" }, "types": "index.d.ts", "files": [ "dist", "src", "index.d.ts" ], "keywords": [ "vite-plugin", "quasar", "vite", "vue", "vuejs" ], "author": { "name": "Razvan Stoenescu", "email": "razvan.stoenescu@gmail.com", "url": "https://github.com/quasarframework" }, "repository": { "type": "git", "url": "https://github.com/quasarframework/quasar" }, "devDependencies": { "@vue/test-utils": "^2.4.6", "eslint": "^8.57.1", "fs-extra": "^11.2.0", "jsdom": "^24.1.3", "pug": "^3.0.3", "rollup": "^4.24.2", "vite": "^6.0.0", "vite-plugin-checker": "^0.7.2", "vitest": "^2.1.1", "vue": "^3.5.5", "eslint-config-quasar": "0.0.1", "quasar": "2.17.6" }, "peerDependencies": { "@vitejs/plugin-vue": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0", "quasar": "^2.16.0", "vite": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0", "vue": "^3.0.0" }, "license": "MIT", "bugs": "https://github.com/quasarframework/quasar/issues", "homepage": "https://quasar.dev", "funding": { "type": "github", "url": "https://donate.quasar.dev" }, "engines": { "node": ">=18" }, "publishConfig": { "access": "public" }, "scripts": { "lint": "eslint --ext .js,.vue ./ --fix --report-unused-disable-directives", "dev": "cd ./playground && pnpm dev", "build": "node ./build/clean.js && rollup --config ./build/rollup.config.js", "test": "pnpm test:usage && pnpm test:runtime", "test:watch": "vitest run --watch --config ./testing/runtime/vitest.config.js", "test:usage": "vitest run --config ./testing/usage/vitest.config.js", "test:runtime": "vitest run --config ./testing/runtime/vitest.config.js" } }