12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "name": "@vue/devtools-core",
- "type": "module",
- "version": "8.0.1",
- "author": "webfansplz",
- "license": "MIT",
- "repository": {
- "directory": "packages/core",
- "type": "git",
- "url": "git+https://github.com/vuejs/devtools.git"
- },
- "exports": {
- ".": {
- "import": "./dist/index.js",
- "require": "./dist/index.cjs"
- }
- },
- "main": "./dist/index.cjs",
- "module": "./dist/index.js",
- "files": [
- "dist",
- "server.d.ts"
- ],
- "peerDependencies": {
- "vue": "^3.0.0"
- },
- "dependencies": {
- "mitt": "^3.0.1",
- "nanoid": "^5.1.5",
- "pathe": "^2.0.3",
- "vite-hot-client": "^2.1.0",
- "@vue/devtools-kit": "^8.0.1",
- "@vue/devtools-shared": "^8.0.1"
- },
- "devDependencies": {
- "vue": "^3.5.18"
- },
- "scripts": {
- "build": "tsdown --clean",
- "prepare:type": "tsdown --dts-only",
- "stub": "tsdown --watch --onSuccess 'tsdown --dts-only'"
- }
- }
|