UNPKG

kirbyup

Version:

Zero-config bundler for Kirby Panel plugins

113 lines (112 loc) 2.6 kB
{ "name": "kirbyup", "type": "module", "version": "3.4.1", "packageManager": "pnpm@10.15.1", "description": "Zero-config bundler for Kirby Panel plugins", "author": { "name": "Johann Schopplich", "email": "hello@johannschopplich.com", "url": "https://johannschopplich.com" }, "license": "MIT", "homepage": "https://kirbyup.getkirby.com", "repository": { "type": "git", "url": "git+https://github.com/johannschopplich/kirbyup.git" }, "bugs": "https://github.com/johannschopplich/kirbyup/issues", "keywords": [ "kirby-cms", "kirby-plugin", "kirby", "cli", "panel", "bundler" ], "exports": { ".": { "types": "./dist/node/index.d.ts", "default": "./dist/node/index.js" }, "./config": { "types": "./dist/client/config.d.ts", "default": "./dist/client/config.js" }, "./plugin": { "types": "./dist/client/plugin.d.ts", "default": "./dist/client/plugin.js" } }, "types": "./dist/node/index.d.ts", "typesVersions": { "*": { "config": [ "./dist/client/config.d.ts" ], "plugin": [ "./dist/client/plugin.d.ts" ] } }, "bin": { "kirbyup": "bin/kirbyup.mjs" }, "files": [ "bin", "dist" ], "engines": { "node": ">=18" }, "scripts": { "build": "tsdown", "docs:dev": "vitepress dev docs", "docs:build": "vitepress build docs", "docs:preview": "vitepress preview docs", "lint": "eslint .", "lint:fix": "eslint . --fix", "release": "bumpp", "test": "vitest --no-isolate", "test:types": "tsc --noEmit" }, "dependencies": { "@vitejs/plugin-vue2": "2.2.0", "@vitejs/plugin-vue2-jsx": "1.1.0", "@vue/compiler-sfc": "^2.7.16", "c12": "~3.2.0", "cac": "^6.7.14", "chokidar": "^4.0.3", "consola": "^3.4.2", "magic-string": "^0.30.19", "nypm": "^0.6.1", "pathe": "^2.0.3", "perfect-debounce": "^2.0.0", "postcss": "^8.5.6", "postcss-load-config": "^6.0.1", "rollup-plugin-external-globals": "^0.13.0", "sass": "^1.92.1", "vite": "^6.3.6", "vite-plugin-full-reload": "^1.2.0", "vue": "^2.7.16" }, "devDependencies": { "@antfu/eslint-config": "^5.3.0", "@types/node": "^24.3.1", "bumpp": "^10.2.3", "eslint": "^9.35.0", "tinyglobby": "^0.2.15", "tsdown": "^0.15.0", "typescript": "^5.9.2", "vitest": "^3.2.4" }, "pnpm": { "overrides": { "vite": "^6.3.6" }, "onlyBuiltDependencies": [ "@parcel/watcher", "esbuild" ] } }