78 lines
2.0 KiB
JSON
78 lines
2.0 KiB
JSON
{
|
|
"name": "@quasar/vite-plugin",
|
|
"version": "1.10.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": "^9.29.0",
|
|
"fs-extra": "^11.2.0",
|
|
"jsdom": "^26.1.0",
|
|
"pug": "^3.0.3",
|
|
"rollup": "^4.24.2",
|
|
"vite": "^7.0.3",
|
|
"vite-plugin-checker": "^0.10.0",
|
|
"vitest": "^3.2.4",
|
|
"vue": "^3.5.5",
|
|
"quasar": "2.18.1",
|
|
"eslint-config-quasar": "0.0.3"
|
|
},
|
|
"peerDependencies": {
|
|
"@vitejs/plugin-vue": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0",
|
|
"quasar": "^2.16.0",
|
|
"vite": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.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": ">=20"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint --cache --fix",
|
|
"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"
|
|
}
|
|
} |