vite-plugin-vue-tracer
Version:
Tracer for the source code of elements and vdoms in Vue SFC
78 lines • 2.06 kB
JSON
{
"name": "vite-plugin-vue-tracer",
"type": "module",
"version": "1.0.0",
"description": "Tracer for the source code of elements and vdoms in Vue SFC",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/antfu/vite-plugin-vue-tracer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/vite-plugin-vue-tracer.git"
},
"bugs": "https://github.com/antfu/vite-plugin-vue-tracer/issues",
"keywords": [
"vue",
"vite-plugin",
"devtools"
],
"exports": {
".": "./dist/index.mjs",
"./client/record": "./dist/client/record.mjs",
"./client/overlay": "./dist/client/overlay.mjs",
"./client/listeners": "./dist/client/listeners.mjs"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"peerDependencies": {
"vite": "^6.0.0 || ^7.0.0",
"vue": "^3.5.0"
},
"dependencies": {
"estree-walker": "^3.0.3",
"exsolve": "^1.0.7",
"magic-string": "^0.30.17",
"pathe": "^2.0.3",
"source-map-js": "^1.2.1"
},
"devDependencies": {
"@antfu/eslint-config": "^4.16.1",
"@antfu/ni": "^25.0.0",
"@antfu/utils": "^9.2.0",
"@types/node": "^24.0.7",
"bumpp": "^10.2.0",
"eslint": "^9.30.0",
"lint-staged": "^16.1.2",
"nanoevents": "^9.1.0",
"simple-git-hooks": "^2.13.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"unbuild": "^3.5.0",
"vite": "^7.0.0",
"vitest": "^3.2.4",
"vue": "^3.5.17",
"vue-tsc": "^2.2.10",
"vite-plugin-vue-tracer": "1.0.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"play": "nr -C playground play",
"release": "bumpp && pnpm publish",
"start": "tsx src/index.ts",
"test": "vitest",
"typecheck": "vue-tsc --noEmit"
}
}