feat:node-modules

This commit is contained in:
houjunxiang
2025-11-24 10:26:18 +08:00
parent 753766893b
commit 8a3e48d856
8825 changed files with 567399 additions and 1 deletions

535
node_modules/vconsole/CHANGELOG.md generated vendored Normal file

File diff suppressed because it is too large Load Diff

533
node_modules/vconsole/CHANGELOG_CN.md generated vendored Normal file

File diff suppressed because it is too large Load Diff

9
node_modules/vconsole/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,9 @@
Tencent is pleased to support the open source community by making vConsole available.
Copyright (C) 2017 THL A29 Limited, a Tencent company. All rights reserved.
If you have downloaded a copy of the vConsole binary from Tencent, please note that the vConsole binary is licensed under the MIT License.
If you have downloaded a copy of the vConsole source code from Tencent, please note that vConsole source code is licensed under the MIT License, except for the third-party components listed below which are subject to different license terms. Your integration of vConsole into your own projects may require compliance with the MIT License, as well as the other licenses applicable to the third-party components included within vConsole.
A copy of the MIT License is included in this file.

196
node_modules/vconsole/README.md generated vendored Normal file

File diff suppressed because it is too large Load Diff

199
node_modules/vconsole/README_CN.md generated vendored Normal file

File diff suppressed because it is too large Load Diff

24
node_modules/vconsole/build/vendor.d.ts generated vendored Normal file
View File

@@ -0,0 +1,24 @@
declare module 'vendor/core-js/stable/symbol' {
}
declare module 'vendor/mutation-observer' {
export class MutationObserver {
}
}
declare module 'vendor/svelte' {
export class SvelteComponent {
}
}
declare module 'vendor/svelte/store' {
export interface Subscriber<T> {
}
export interface Unsubscriber {
}
export interface Updater<T> {
}
export interface Writable<T> {
}
}

1237
node_modules/vconsole/dist/vconsole.min.d.ts generated vendored Normal file

File diff suppressed because it is too large Load Diff

10
node_modules/vconsole/dist/vconsole.min.js generated vendored Normal file

File diff suppressed because one or more lines are too long

70
node_modules/vconsole/package.json generated vendored Normal file
View File

@@ -0,0 +1,70 @@
{
"name": "vconsole",
"version": "3.15.1",
"description": "A lightweight, extendable front-end developer tool for mobile web page.",
"homepage": "https://github.com/Tencent/vConsole",
"files": [
"dist/*",
"build/vendor.d.ts",
"CHANGELOG*",
"README*"
],
"main": "dist/vconsole.min.js",
"typings": "dist/vconsole.min.d.ts",
"scripts": {
"build": "webpack --mode=production --progress --env target=web",
"build:wx": "webpack --mode=production --progress --env target=wx",
"build:typings": "node ./build/build.typings.js",
"build:dev": "webpack --mode=development --progress",
"watch": "webpack --mode=development --watch --progress",
"serve": "webpack serve --config webpack.serve.config --progress",
"test:pack": "npx npm-packlist"
},
"sideEffects": [
"lib/*",
"element/*",
"network/*",
"storage/*"
],
"keywords": [
"console",
"debug",
"mobile"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Tencent/vConsole.git"
},
"dependencies": {
"@babel/runtime": "^7.17.2",
"copy-text-to-clipboard": "^3.0.1",
"core-js": "^3.11.0",
"mutation-observer": "^1.0.3"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-export-namespace-from": "^7.12.13",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-transform-block-scoping": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-typescript": "^7.13.0",
"babel-loader": "^8.2.4",
"babel-plugin-add-module-exports": "^1.0.4",
"css-loader": "^6.7.1",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"style-loader": "^3.3.1",
"svelte": "^3.47.0",
"svelte-loader": "^3.1.2",
"svelte-preprocess": "^4.10.6",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1",
"webpack-merge": "^5.8.0"
},
"author": "Tencent",
"license": "MIT"
}