vite-plugin-layouts
Version:
Router-based Layout Plugin for Vite.
99 lines (98 loc) • 2.7 kB
JSON
{
"name": "vite-plugin-layouts",
"type": "module",
"version": "0.1.10",
"description": "Router-based Layout Plugin for Vite.",
"author": "Chris Breuer <chris@stacksjs.org>",
"license": "MIT",
"homepage": "https://github.com/stacksjs/vite-plugin-layouts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stacksjs/vite-plugin-layouts.git"
},
"bugs": {
"url": "https://github.com/stacksjs/vite-plugin-layouts/issues"
},
"keywords": [
"layouts",
"vite-plugin-layouts",
"vite-plugin-layouts",
"vue",
"vite",
"plugin",
"typescript"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./client": {
"types": "./client.d.ts"
},
"./*": {
"import": "./dist/*"
}
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"client.d.ts",
"dist"
],
"scripts": {
"build": "bun --bun build.ts",
"lint": "bunx --bun eslint .",
"lint:fix": "bunx --bun eslint . --fix",
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
"changelog": "bunx changelogen --output CHANGELOG.md",
"prepublishOnly": "bun --bun run build",
"release": "bun run changelog && bunx bumpp package.json ./packages/vite-plugin-layouts/package.json --all",
"test": "bun test",
"typecheck": "bun --bun tsc --noEmit",
"dev:docs": "bun --bun vitepress dev docs",
"build:docs": "bun --bun vitepress build docs",
"preview:docs": "bun --bun vitepress preview docs",
"example:dev": "bun --bun -C examples/spa run dev",
"example:build": "bun --bun -C examples/spa run build",
"example:serve": "bun --bun -C examples/spa run serve",
"example:build-ssg": "bun --bun -C examples/ssg run build",
"example:serve-ssg": "bun --bun -C examples/ssg run serve"
},
"peerDependencies": {
"vite": "^4.0.0 || ^5.0.0",
"vue": "^3.5.14",
"vue-router": "^4.5.1"
},
"dependencies": {
"debug": "^4.3.4",
"fast-glob": "^3.3.2"
},
"devDependencies": {
"@stacksjs/docs": "^0.70.23",
"@stacksjs/eslint-config": "^4.8.2-beta.1",
"@types/bun": "^1.2.14",
"bumpp": "^10.1.1",
"bun-plugin-dtsx": "^0.21.12",
"changelogen": "^0.6.1",
"lint-staged": "^15.5.2",
"simple-git-hooks": "^2.13.0",
"typescript": "^5.8.3",
"unocss": "^66.1.2",
"vite": "^5.0.5",
"vite-plugin-vue-devtools": "^7.7.6"
},
"overrides": {
"unconfig": "0.3.10"
},
"simple-git-hooks": {
"pre-commit": "bunx lint-staged"
},
"lint-staged": {
"*.{js,ts}": "bunx eslint . --fix"
},
"workspaces": [
"examples/*",
"packages/*"
]
}