UNPKG

vite-plugin-inspect

Version:

Inspect the intermediate state of Vite plugins

120 lines 3.15 kB
{ "name": "vite-plugin-inspect", "type": "module", "version": "11.0.0", "description": "Inspect the intermediate state of Vite plugins", "author": "Anthony Fu <anthonyfu117@hotmail.com>", "license": "MIT", "funding": "https://github.com/sponsors/antfu", "homepage": "https://github.com/antfu/vite-plugin-inspect#readme", "repository": { "type": "git", "url": "git+https://github.com/antfu/vite-plugin-inspect.git" }, "bugs": { "url": "https://github.com/antfu/vite-plugin-inspect/issues" }, "keywords": [ "vite-plugin" ], "exports": { ".": "./dist/index.mjs", "./nuxt": "./dist/nuxt.mjs", "./*": "./*" }, "main": "dist/index.mjs", "module": "dist/index.mjs", "types": "dist/index.d.mts", "files": [ "dist" ], "engines": { "node": ">=14" }, "peerDependencies": { "vite": "^6.0.0" }, "peerDependenciesMeta": { "@nuxt/kit": { "optional": true } }, "dependencies": { "ansis": "^3.16.0", "debug": "^4.4.0", "error-stack-parser-es": "^1.0.5", "ohash": "^2.0.4", "open": "^10.1.0", "perfect-debounce": "^1.0.0", "sirv": "^3.0.1", "unplugin-utils": "^0.2.0", "vite-dev-rpc": "^1.0.7" }, "devDependencies": { "@antfu/eslint-config": "^4.3.0", "@antfu/ni": "^23.3.1", "@antfu/utils": "^9.1.0", "@iconify/json": "^2.2.309", "@nuxt/kit": "^3.15.4", "@types/codemirror": "^5.60.15", "@types/debug": "^4.1.12", "@types/node": "^22.13.5", "@unocss/eslint-config": "^66.0.0", "@unocss/eslint-plugin": "^66.0.0", "@vitejs/plugin-vue": "^5.2.1", "@vue/compiler-sfc": "^3.5.13", "@vueuse/core": "^12.7.0", "@vueuse/router": "^12.7.0", "bumpp": "^10.0.3", "codemirror": "^5.65.16", "codemirror-theme-vars": "^0.1.2", "comlink": "^4.4.2", "diff-match-patch-es": "^1.0.1", "echarts": "^5.6.0", "eslint": "^9.21.0", "floating-vue": "^5.2.2", "fuse.js": "^7.1.0", "lint-staged": "^15.4.3", "pathe": "^2.0.3", "pinia": "^3.0.1", "rimraf": "^6.0.1", "simple-git-hooks": "^2.11.1", "splitpanes": "^3.1.8", "typescript": "~5.7.3", "unbuild": "^3.3.1", "unocss": "^66.0.0", "unplugin-auto-import": "^19.1.0", "unplugin-vue-components": "^28.4.0", "unplugin-vue-router": "^0.11.2", "vis-data": "7.1.7", "vis-network": "9.1.6", "vite": "^6.1.1", "vite-hot-client": "^2.0.4", "vue": "^3.5.13", "vue-echarts": "^7.0.3", "vue-router": "^4.5.0", "vue-tsc": "^2.2.2" }, "resolutions": { "vite": "^6.1.1" }, "simple-git-hooks": { "pre-commit": "npx lint-staged" }, "lint-staged": { "*.{js,ts,vue,md}": [ "eslint --cache --fix" ] }, "scripts": { "build": "rimraf dist && pnpm run --sequential /^build:/", "build:client": "vite build src/client", "build:js": "unbuild", "dev": "nr stub && INSPECT_DEV=true vite src/client", "dev:client": "vite build src/client --watch", "stub": "unbuild --stub", "lint": "eslint .", "typecheck": "vue-tsc --noEmit", "release": "bumpp && pnpm publish" } }