This commit is contained in:
21
node_modules/@vue/devtools-kit/LICENSE
generated
vendored
Normal file
21
node_modules/@vue/devtools-kit/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2023 webfansplz
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
3
node_modules/@vue/devtools-kit/README.md
generated
vendored
Normal file
3
node_modules/@vue/devtools-kit/README.md
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
# @vue/devtools-kit
|
||||
|
||||
> Utility kit for DevTools.
|
6850
node_modules/@vue/devtools-kit/dist/index.cjs
generated
vendored
Normal file
6850
node_modules/@vue/devtools-kit/dist/index.cjs
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1121
node_modules/@vue/devtools-kit/dist/index.d.cts
generated
vendored
Normal file
1121
node_modules/@vue/devtools-kit/dist/index.d.cts
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1121
node_modules/@vue/devtools-kit/dist/index.d.ts
generated
vendored
Normal file
1121
node_modules/@vue/devtools-kit/dist/index.d.ts
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
6757
node_modules/@vue/devtools-kit/dist/index.js
generated
vendored
Normal file
6757
node_modules/@vue/devtools-kit/dist/index.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
20
node_modules/@vue/devtools-kit/global.d.ts
generated
vendored
Normal file
20
node_modules/@vue/devtools-kit/global.d.ts
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
import type { DevToolsHook, RouterInfo } from './src/types'
|
||||
|
||||
/* eslint-disable vars-on-top, no-var */
|
||||
declare global {
|
||||
var __VUE_DEVTOOLS_GLOBAL_HOOK__: DevToolsHook
|
||||
var __VUE_DEVTOOLS_NEXT_APP_RECORD_INFO__: {
|
||||
id: number
|
||||
appIds: Set<string>
|
||||
}
|
||||
var __VUE_DEVTOOLS_ROUTER_INFO__: RouterInfo
|
||||
var __VUE_DEVTOOLS_ENV__: {
|
||||
vitePluginDetected: boolean
|
||||
}
|
||||
var __VUE_DEVTOOLS_COMPONENT_INSPECTOR_ENABLED__: boolean
|
||||
var __VUE_DEVTOOLS_VITE_PLUGIN_DETECTED__: boolean
|
||||
var __VUE_DEVTOOLS_VITE_PLUGIN_CLIENT_URL__: string
|
||||
var __VUE_DEVTOOLS_BROWSER_EXTENSION_DETECTED__: boolean
|
||||
}
|
||||
|
||||
export { }
|
44
node_modules/@vue/devtools-kit/package.json
generated
vendored
Normal file
44
node_modules/@vue/devtools-kit/package.json
generated
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"name": "@vue/devtools-kit",
|
||||
"type": "module",
|
||||
"version": "7.7.7",
|
||||
"author": "webfansplz",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"directory": "packages/devtools-kit",
|
||||
"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",
|
||||
"types": "./types.d.ts",
|
||||
"files": [
|
||||
"**.d.ts",
|
||||
"dist"
|
||||
],
|
||||
"dependencies": {
|
||||
"birpc": "^2.3.0",
|
||||
"hookable": "^5.5.3",
|
||||
"mitt": "^3.0.1",
|
||||
"perfect-debounce": "^1.0.0",
|
||||
"speakingurl": "^14.0.1",
|
||||
"superjson": "^2.2.2",
|
||||
"@vue/devtools-shared": "^7.7.7"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/speakingurl": "^13.0.6",
|
||||
"vue": "^3.5.13",
|
||||
"vue-router": "^4.5.0"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsup --clean",
|
||||
"prepare:type": "tsup --dts-only",
|
||||
"stub": "tsup --watch --onSuccess 'tsup --dts-only'"
|
||||
}
|
||||
}
|
2
node_modules/@vue/devtools-kit/types.d.ts
generated
vendored
Normal file
2
node_modules/@vue/devtools-kit/types.d.ts
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
/// <reference path="./global.d.ts" />
|
||||
export * from './dist/index'
|
Reference in New Issue
Block a user