You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.0 KiB
JSON
69 lines
2.0 KiB
JSON
{
|
|
"name": "vite-plugin-vue-layouts",
|
|
"version": "0.8.0",
|
|
"description": "Router based layout plugin for Vite and Vue",
|
|
"author": "johncampionjr <npm@relate.dev>",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/johncampionjr/vite-plugin-vue-layouts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/johncampionjr/vite-plugin-vue-layouts"
|
|
},
|
|
"bugs": "https://github.com/johncampionjr/vite-plugin-vue-layouts",
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"./*": "./*"
|
|
},
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"client.d.ts",
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"dev": "npm run build -- --watch",
|
|
"build": "tsup src/index.ts --dts --format cjs,esm && cp dist/index.d.ts dist/index.d.mts",
|
|
"prepublishOnly": "npm run build",
|
|
"release": "npx bumpp --commit --tag --push && npm publish",
|
|
"example:dev": "npm -C examples/spa run dev",
|
|
"example:build": "npm -C examples/spa run build",
|
|
"example:serve": "npm -C examples/spa run serve",
|
|
"example:build-ssg": "npm -C examples/ssg run build",
|
|
"example:serve-ssg": "npm -C examples/ssg run serve"
|
|
},
|
|
"peerDependencies": {
|
|
"vite": "^2.5.0 || ^3.0.0-0 || ^4.0.0",
|
|
"vue": "^2.6.12 || ^3.2.4",
|
|
"vue-router": "^3.5.1 || ^4.0.11"
|
|
},
|
|
"dependencies": {
|
|
"debug": "^4.3.3",
|
|
"fast-glob": "^3.2.11",
|
|
"local-pkg": "^0.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@antfu/eslint-config": "^0.7.0",
|
|
"@types/debug": "^4.1.7",
|
|
"@types/node": "^16.11.26",
|
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^7.32.0",
|
|
"rollup": "^2.68.0",
|
|
"tsup": "^4.14.0",
|
|
"typescript": "^4.6.2",
|
|
"vite": "^2.8.6",
|
|
"vue": "^3.2.31",
|
|
"vue-router": "^4.0.13"
|
|
}
|
|
}
|