diff --git a/.gitignore b/.gitignore index a547bf3..38585c2 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ pnpm-debug.log* lerna-debug.log* node_modules +unpackage dist dist-ssr *.local diff --git a/node_modules/.bin/detect-libc b/node_modules/.bin/detect-libc index b4c4b76..76becf3 120000 --- a/node_modules/.bin/detect-libc +++ b/node_modules/.bin/detect-libc @@ -1 +1,16 @@ -../detect-libc/bin/detect-libc.js \ No newline at end of file +#!/bin/sh +basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") + +case `uname` in + *CYGWIN*|*MINGW*|*MSYS*) + if command -v cygpath > /dev/null 2>&1; then + basedir=`cygpath -w "$basedir"` + fi + ;; +esac + +if [ -x "$basedir/node" ]; then + exec "$basedir/node" "$basedir/../detect-libc/bin/detect-libc.js" "$@" +else + exec node "$basedir/../detect-libc/bin/detect-libc.js" "$@" +fi diff --git a/node_modules/.bin/sass b/node_modules/.bin/sass index 4bda500..dde8400 120000 --- a/node_modules/.bin/sass +++ b/node_modules/.bin/sass @@ -1 +1,16 @@ -../sass/sass.js \ No newline at end of file +#!/bin/sh +basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") + +case `uname` in + *CYGWIN*|*MINGW*|*MSYS*) + if command -v cygpath > /dev/null 2>&1; then + basedir=`cygpath -w "$basedir"` + fi + ;; +esac + +if [ -x "$basedir/node" ]; then + exec "$basedir/node" "$basedir/../sass/sass.js" "$@" +else + exec node "$basedir/../sass/sass.js" "$@" +fi diff --git a/node_modules/@parcel/watcher-darwin-x64/LICENSE b/node_modules/@parcel/watcher-darwin-x64/LICENSE deleted file mode 100644 index 7fb9bc9..0000000 --- a/node_modules/@parcel/watcher-darwin-x64/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2017-present Devon Govett - -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. diff --git a/node_modules/@parcel/watcher-darwin-x64/README.md b/node_modules/@parcel/watcher-darwin-x64/README.md deleted file mode 100644 index 806b894..0000000 --- a/node_modules/@parcel/watcher-darwin-x64/README.md +++ /dev/null @@ -1 +0,0 @@ -This is the darwin-x64 build of @parcel/watcher. See https://github.com/parcel-bundler/watcher for details. \ No newline at end of file diff --git a/node_modules/@parcel/watcher-darwin-x64/package.json b/node_modules/@parcel/watcher-darwin-x64/package.json deleted file mode 100644 index bc448df..0000000 --- a/node_modules/@parcel/watcher-darwin-x64/package.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "_from": "@parcel/watcher-darwin-x64@2.5.1", - "_id": "@parcel/watcher-darwin-x64@2.5.1", - "_inBundle": false, - "_integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==", - "_location": "/@parcel/watcher-darwin-x64", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "@parcel/watcher-darwin-x64@2.5.1", - "name": "@parcel/watcher-darwin-x64", - "escapedName": "@parcel%2fwatcher-darwin-x64", - "scope": "@parcel", - "rawSpec": "2.5.1", - "saveSpec": null, - "fetchSpec": "2.5.1" - }, - "_requiredBy": [ - "/@parcel/watcher" - ], - "_resolved": "https://registry.npmmirror.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz", - "_shasum": "99f3af3869069ccf774e4ddfccf7e64fd2311ef8", - "_spec": "@parcel/watcher-darwin-x64@2.5.1", - "_where": "/Users/qiuyuan/Desktop/guxuan_icu/demo/node_modules/@parcel/watcher", - "bugs": { - "url": "https://github.com/parcel-bundler/watcher/issues" - }, - "bundleDependencies": false, - "cpu": [ - "x64" - ], - "deprecated": false, - "description": "A native C++ Node module for querying and subscribing to filesystem events. Used by Parcel 2.", - "engines": { - "node": ">= 10.0.0" - }, - "files": [ - "watcher.node" - ], - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - }, - "homepage": "https://github.com/parcel-bundler/watcher#readme", - "license": "MIT", - "main": "watcher.node", - "name": "@parcel/watcher-darwin-x64", - "os": [ - "darwin" - ], - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/parcel-bundler/watcher.git" - }, - "version": "2.5.1" -} diff --git a/node_modules/@parcel/watcher-darwin-x64/watcher.node b/node_modules/@parcel/watcher-darwin-x64/watcher.node deleted file mode 100644 index d42a161..0000000 Binary files a/node_modules/@parcel/watcher-darwin-x64/watcher.node and /dev/null differ diff --git a/node_modules/@parcel/watcher/package.json b/node_modules/@parcel/watcher/package.json index bdab89c..dc41500 100644 --- a/node_modules/@parcel/watcher/package.json +++ b/node_modules/@parcel/watcher/package.json @@ -1,70 +1,20 @@ { - "_from": "@parcel/watcher@^2.4.1", - "_id": "@parcel/watcher@2.5.1", - "_inBundle": false, - "_integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==", - "_location": "/@parcel/watcher", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "@parcel/watcher@^2.4.1", - "name": "@parcel/watcher", - "escapedName": "@parcel%2fwatcher", - "scope": "@parcel", - "rawSpec": "^2.4.1", - "saveSpec": null, - "fetchSpec": "^2.4.1" + "name": "@parcel/watcher", + "version": "2.5.1", + "main": "index.js", + "types": "index.d.ts", + "repository": { + "type": "git", + "url": "https://github.com/parcel-bundler/watcher.git" }, - "_requiredBy": [ - "/sass" - ], - "_resolved": "https://registry.npmmirror.com/@parcel/watcher/-/watcher-2.5.1.tgz", - "_shasum": "342507a9cfaaf172479a882309def1e991fb1200", - "_spec": "@parcel/watcher@^2.4.1", - "_where": "/Users/qiuyuan/Desktop/guxuan_icu/demo/node_modules/sass", - "binary": { - "napi_versions": [ - 3 - ] - }, - "bugs": { - "url": "https://github.com/parcel-bundler/watcher/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@parcel/watcher-android-arm64": "2.5.1", - "@parcel/watcher-darwin-arm64": "2.5.1", - "@parcel/watcher-darwin-x64": "2.5.1", - "@parcel/watcher-freebsd-x64": "2.5.1", - "@parcel/watcher-linux-arm-glibc": "2.5.1", - "@parcel/watcher-linux-arm-musl": "2.5.1", - "@parcel/watcher-linux-arm64-glibc": "2.5.1", - "@parcel/watcher-linux-arm64-musl": "2.5.1", - "@parcel/watcher-linux-x64-glibc": "2.5.1", - "@parcel/watcher-linux-x64-musl": "2.5.1", - "@parcel/watcher-win32-arm64": "2.5.1", - "@parcel/watcher-win32-ia32": "2.5.1", - "@parcel/watcher-win32-x64": "2.5.1", - "detect-libc": "^1.0.3", - "is-glob": "^4.0.3", - "micromatch": "^4.0.5", - "node-addon-api": "^7.0.0" - }, - "deprecated": false, "description": "A native C++ Node module for querying and subscribing to filesystem events. Used by Parcel 2.", - "devDependencies": { - "esbuild": "^0.19.8", - "fs-extra": "^10.0.0", - "husky": "^7.0.2", - "lint-staged": "^11.1.2", - "mocha": "^9.1.1", - "napi-wasm": "^1.1.0", - "prebuildify": "^6.0.1", - "prettier": "^2.3.2" + "license": "MIT", + "publishConfig": { + "access": "public" }, - "engines": { - "node": ">= 10.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" }, "files": [ "index.js", @@ -78,54 +28,61 @@ "scripts/build-from-source.js", "binding.gyp" ], - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "scripts": { + "prebuild": "prebuildify --napi --strip --tag-libc", + "format": "prettier --write \"./**/*.{js,json,md}\"", + "build": "node-gyp rebuild", + "install": "node scripts/build-from-source.js", + "test": "mocha" + }, + "engines": { + "node": ">= 10.0.0" }, - "homepage": "https://github.com/parcel-bundler/watcher#readme", "husky": { "hooks": { "pre-commit": "lint-staged" } }, - "license": "MIT", "lint-staged": { "*.{js,json,md}": [ "prettier --write", "git add" ] }, - "main": "index.js", - "name": "@parcel/watcher", + "dependencies": { + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" + }, + "devDependencies": { + "esbuild": "^0.19.8", + "fs-extra": "^10.0.0", + "husky": "^7.0.2", + "lint-staged": "^11.1.2", + "mocha": "^9.1.1", + "napi-wasm": "^1.1.0", + "prebuildify": "^6.0.1", + "prettier": "^2.3.2" + }, + "binary": { + "napi_versions": [ + 3 + ] + }, "optionalDependencies": { - "@parcel/watcher-android-arm64": "2.5.1", - "@parcel/watcher-darwin-arm64": "2.5.1", "@parcel/watcher-darwin-x64": "2.5.1", - "@parcel/watcher-freebsd-x64": "2.5.1", - "@parcel/watcher-linux-arm-glibc": "2.5.1", - "@parcel/watcher-linux-arm-musl": "2.5.1", - "@parcel/watcher-linux-arm64-glibc": "2.5.1", - "@parcel/watcher-linux-arm64-musl": "2.5.1", - "@parcel/watcher-linux-x64-glibc": "2.5.1", - "@parcel/watcher-linux-x64-musl": "2.5.1", + "@parcel/watcher-darwin-arm64": "2.5.1", + "@parcel/watcher-win32-x64": "2.5.1", "@parcel/watcher-win32-arm64": "2.5.1", "@parcel/watcher-win32-ia32": "2.5.1", - "@parcel/watcher-win32-x64": "2.5.1" - }, - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/parcel-bundler/watcher.git" - }, - "scripts": { - "build": "node-gyp rebuild", - "format": "prettier --write \"./**/*.{js,json,md}\"", - "install": "node scripts/build-from-source.js", - "prebuild": "prebuildify --napi --strip --tag-libc", - "test": "mocha" - }, - "types": "index.d.ts", - "version": "2.5.1" + "@parcel/watcher-linux-x64-glibc": "2.5.1", + "@parcel/watcher-linux-x64-musl": "2.5.1", + "@parcel/watcher-linux-arm64-glibc": "2.5.1", + "@parcel/watcher-linux-arm64-musl": "2.5.1", + "@parcel/watcher-linux-arm-glibc": "2.5.1", + "@parcel/watcher-linux-arm-musl": "2.5.1", + "@parcel/watcher-android-arm64": "2.5.1", + "@parcel/watcher-freebsd-x64": "2.5.1" + } } diff --git a/node_modules/braces/package.json b/node_modules/braces/package.json index 0675430..c3c056e 100644 --- a/node_modules/braces/package.json +++ b/node_modules/braces/package.json @@ -1,76 +1,42 @@ { - "_from": "braces@^3.0.3", - "_id": "braces@3.0.3", - "_inBundle": false, - "_integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", - "_location": "/braces", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "braces@^3.0.3", - "name": "braces", - "escapedName": "braces", - "rawSpec": "^3.0.3", - "saveSpec": null, - "fetchSpec": "^3.0.3" - }, - "_requiredBy": [ - "/micromatch" + "name": "braces", + "description": "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.", + "version": "3.0.3", + "homepage": "https://github.com/micromatch/braces", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Brian Woodward (https://twitter.com/doowb)", + "Elan Shanker (https://github.com/es128)", + "Eugene Sharygin (https://github.com/eush77)", + "hemanth.hm (http://h3manth.com)", + "Jon Schlinkert (http://twitter.com/jonschlinkert)" ], - "_resolved": "https://registry.npmmirror.com/braces/-/braces-3.0.3.tgz", - "_shasum": "490332f40919452272d55a8480adc0c441358789", - "_spec": "braces@^3.0.3", - "_where": "/Users/qiuyuan/Desktop/guxuan_icu/demo/node_modules/micromatch", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "micromatch/braces", "bugs": { "url": "https://github.com/micromatch/braces/issues" }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Brian Woodward", - "url": "https://twitter.com/doowb" - }, - { - "name": "Elan Shanker", - "url": "https://github.com/es128" - }, - { - "name": "Eugene Sharygin", - "url": "https://github.com/eush77" - }, - { - "name": "hemanth.hm", - "url": "http://h3manth.com" - }, - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - } + "license": "MIT", + "files": [ + "index.js", + "lib" ], + "main": "index.js", + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "mocha", + "benchmark": "node benchmark" + }, "dependencies": { "fill-range": "^7.1.1" }, - "deprecated": false, - "description": "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.", "devDependencies": { "ansi-colors": "^3.2.4", "bash-path": "^2.0.1", "gulp-format-md": "^2.0.0", "mocha": "^6.1.1" }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js", - "lib" - ], - "homepage": "https://github.com/micromatch/braces", "keywords": [ "alpha", "alphabetical", @@ -95,17 +61,6 @@ "ranges", "sh" ], - "license": "MIT", - "main": "index.js", - "name": "braces", - "repository": { - "type": "git", - "url": "git+https://github.com/micromatch/braces.git" - }, - "scripts": { - "benchmark": "node benchmark", - "test": "mocha" - }, "verb": { "toc": false, "layout": "default", @@ -118,6 +73,5 @@ "plugins": [ "gulp-format-md" ] - }, - "version": "3.0.3" + } } diff --git a/node_modules/chokidar/package.json b/node_modules/chokidar/package.json index 1f74355..db79241 100644 --- a/node_modules/chokidar/package.json +++ b/node_modules/chokidar/package.json @@ -1,40 +1,32 @@ { - "_from": "chokidar@^4.0.0", - "_id": "chokidar@4.0.3", - "_inBundle": false, - "_integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", - "_location": "/chokidar", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "chokidar@^4.0.0", - "name": "chokidar", - "escapedName": "chokidar", - "rawSpec": "^4.0.0", - "saveSpec": null, - "fetchSpec": "^4.0.0" - }, - "_requiredBy": [ - "/sass" + "name": "chokidar", + "description": "Minimal and efficient cross-platform file watching library", + "version": "4.0.3", + "homepage": "https://github.com/paulmillr/chokidar", + "author": "Paul Miller (https://paulmillr.com)", + "files": [ + "index.js", + "index.d.ts", + "handler.js", + "handler.d.ts", + "esm" ], - "_resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-4.0.3.tgz", - "_shasum": "7be37a4c03c9aee1ecfe862a4a23b2c70c205d30", - "_spec": "chokidar@^4.0.0", - "_where": "/Users/qiuyuan/Desktop/guxuan_icu/demo/node_modules/sass", - "author": { - "name": "Paul Miller", - "url": "https://paulmillr.com" + "main": "./index.js", + "module": "./esm/index.js", + "types": "./index.d.ts", + "exports": { + ".": { + "import": "./esm/index.js", + "require": "./index.js" + }, + "./handler.js": { + "import": "./esm/handler.js", + "require": "./handler.js" + } }, - "bugs": { - "url": "https://github.com/paulmillr/chokidar/issues" - }, - "bundleDependencies": false, "dependencies": { "readdirp": "^4.0.1" }, - "deprecated": false, - "description": "Minimal and efficient cross-platform file watching library", "devDependencies": { "@paulmillr/jsbt": "0.2.1", "@types/node": "20.14.8", @@ -46,28 +38,24 @@ "typescript": "5.5.2", "upath": "2.0.1" }, + "sideEffects": false, "engines": { "node": ">= 14.16.0" }, - "exports": { - ".": { - "import": "./esm/index.js", - "require": "./index.js" - }, - "./handler.js": { - "import": "./esm/handler.js", - "require": "./handler.js" - } + "repository": { + "type": "git", + "url": "git+https://github.com/paulmillr/chokidar.git" + }, + "bugs": { + "url": "https://github.com/paulmillr/chokidar/issues" + }, + "license": "MIT", + "scripts": { + "build": "tsc && tsc -p tsconfig.esm.json", + "lint": "prettier --check src", + "format": "prettier --write src", + "test": "node --test" }, - "files": [ - "index.js", - "index.d.ts", - "handler.js", - "handler.d.ts", - "esm" - ], - "funding": "https://paulmillr.com/funding/", - "homepage": "https://github.com/paulmillr/chokidar", "keywords": [ "fs", "watch", @@ -77,21 +65,5 @@ "file", "fsevents" ], - "license": "MIT", - "main": "./index.js", - "module": "./esm/index.js", - "name": "chokidar", - "repository": { - "type": "git", - "url": "git+https://github.com/paulmillr/chokidar.git" - }, - "scripts": { - "build": "tsc && tsc -p tsconfig.esm.json", - "format": "prettier --write src", - "lint": "prettier --check src", - "test": "node --test" - }, - "sideEffects": false, - "types": "./index.d.ts", - "version": "4.0.3" + "funding": "https://paulmillr.com/funding/" } diff --git a/node_modules/detect-libc/package.json b/node_modules/detect-libc/package.json index dc4aee6..cbd5cd1 100644 --- a/node_modules/detect-libc/package.json +++ b/node_modules/detect-libc/package.json @@ -1,46 +1,28 @@ { - "_from": "detect-libc@^1.0.3", - "_id": "detect-libc@1.0.3", - "_inBundle": false, - "_integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", - "_location": "/detect-libc", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "detect-libc@^1.0.3", - "name": "detect-libc", - "escapedName": "detect-libc", - "rawSpec": "^1.0.3", - "saveSpec": null, - "fetchSpec": "^1.0.3" - }, - "_requiredBy": [ - "/@parcel/watcher" - ], - "_resolved": "https://registry.npmmirror.com/detect-libc/-/detect-libc-1.0.3.tgz", - "_shasum": "fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b", - "_spec": "detect-libc@^1.0.3", - "_where": "/Users/qiuyuan/Desktop/guxuan_icu/demo/node_modules/@parcel/watcher", - "author": { - "name": "Lovell Fuller", - "email": "npm@lovell.info" - }, - "bin": { - "detect-libc": "bin/detect-libc.js" - }, - "bugs": { - "url": "https://github.com/lovell/detect-libc/issues" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Niklas Salmoukas", - "email": "niklas@salmoukas.com" - } - ], - "deprecated": false, + "name": "detect-libc", + "version": "1.0.3", "description": "Node.js module to detect the C standard library (libc) implementation family and version", + "main": "lib/detect-libc.js", + "bin": { + "detect-libc": "./bin/detect-libc.js" + }, + "scripts": { + "test": "semistandard && nyc --reporter=lcov ava" + }, + "repository": { + "type": "git", + "url": "git://github.com/lovell/detect-libc" + }, + "keywords": [ + "libc", + "glibc", + "musl" + ], + "author": "Lovell Fuller ", + "contributors": [ + "Niklas Salmoukas " + ], + "license": "Apache-2.0", "devDependencies": { "ava": "^0.23.0", "nyc": "^11.3.0", @@ -49,22 +31,5 @@ }, "engines": { "node": ">=0.10" - }, - "homepage": "https://github.com/lovell/detect-libc#readme", - "keywords": [ - "libc", - "glibc", - "musl" - ], - "license": "Apache-2.0", - "main": "lib/detect-libc.js", - "name": "detect-libc", - "repository": { - "type": "git", - "url": "git://github.com/lovell/detect-libc.git" - }, - "scripts": { - "test": "semistandard && nyc --reporter=lcov ava" - }, - "version": "1.0.3" + } } diff --git a/node_modules/fill-range/package.json b/node_modules/fill-range/package.json index 8149058..582357f 100644 --- a/node_modules/fill-range/package.json +++ b/node_modules/fill-range/package.json @@ -1,73 +1,43 @@ { - "_from": "fill-range@^7.1.1", - "_id": "fill-range@7.1.1", - "_inBundle": false, - "_integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", - "_location": "/fill-range", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "fill-range@^7.1.1", - "name": "fill-range", - "escapedName": "fill-range", - "rawSpec": "^7.1.1", - "saveSpec": null, - "fetchSpec": "^7.1.1" - }, - "_requiredBy": [ - "/braces" + "name": "fill-range", + "description": "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`", + "version": "7.1.1", + "homepage": "https://github.com/jonschlinkert/fill-range", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Edo Rivai (edo.rivai.nl)", + "Jon Schlinkert (http://twitter.com/jonschlinkert)", + "Paul Miller (paulmillr.com)", + "Rouven Weßling (www.rouvenwessling.de)", + "(https://github.com/wtgtybhertgeghgtwtg)" ], - "_resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.1.1.tgz", - "_shasum": "44265d3cac07e3ea7dc247516380643754a05292", - "_spec": "fill-range@^7.1.1", - "_where": "/Users/qiuyuan/Desktop/guxuan_icu/demo/node_modules/braces", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "jonschlinkert/fill-range", "bugs": { "url": "https://github.com/jonschlinkert/fill-range/issues" }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Edo Rivai", - "url": "edo.rivai.nl" - }, - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - }, - { - "name": "Paul Miller", - "url": "paulmillr.com" - }, - { - "name": "Rouven Weßling", - "url": "www.rouvenwessling.de" - }, - { - "url": "https://github.com/wtgtybhertgeghgtwtg" - } + "license": "MIT", + "files": [ + "index.js" ], + "main": "index.js", + "engines": { + "node": ">=8" + }, + "scripts": { + "lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .", + "mocha": "mocha --reporter dot", + "test": "npm run lint && npm run mocha", + "test:ci": "npm run test:cover", + "test:cover": "nyc npm run mocha" + }, "dependencies": { "to-regex-range": "^5.0.1" }, - "deprecated": false, - "description": "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`", "devDependencies": { "gulp-format-md": "^2.0.0", "mocha": "^6.1.1", "nyc": "^15.1.0" }, - "engines": { - "node": ">=8" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/fill-range", "keywords": [ "alpha", "alphabetical", @@ -88,20 +58,6 @@ "regex", "sh" ], - "license": "MIT", - "main": "index.js", - "name": "fill-range", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/fill-range.git" - }, - "scripts": { - "lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .", - "mocha": "mocha --reporter dot", - "test": "npm run lint && npm run mocha", - "test:ci": "npm run test:cover", - "test:cover": "nyc npm run mocha" - }, "verb": { "toc": false, "layout": "default", @@ -114,6 +70,5 @@ "lint": { "reflinks": true } - }, - "version": "7.1.1" + } } diff --git a/node_modules/immutable/package.json b/node_modules/immutable/package.json index 8634454..b43c22a 100644 --- a/node_modules/immutable/package.json +++ b/node_modules/immutable/package.json @@ -1,43 +1,28 @@ { - "_from": "immutable@^5.0.2", - "_id": "immutable@5.1.1", - "_inBundle": false, - "_integrity": "sha512-3jatXi9ObIsPGr3N5hGw/vWWcTkq6hUYhpQz4k0wLC+owqWi/LiugIw9x0EdNZ2yGedKN/HzePiBvaJRXa0Ujg==", - "_location": "/immutable", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "immutable@^5.0.2", - "name": "immutable", - "escapedName": "immutable", - "rawSpec": "^5.0.2", - "saveSpec": null, - "fetchSpec": "^5.0.2" - }, - "_requiredBy": [ - "/sass" - ], - "_resolved": "https://registry.npmmirror.com/immutable/-/immutable-5.1.1.tgz", - "_shasum": "d4cb552686f34b076b3dcf23c4384c04424d8354", - "_spec": "immutable@^5.0.2", - "_where": "/Users/qiuyuan/Desktop/guxuan_icu/demo/node_modules/sass", + "name": "immutable", + "version": "5.1.1", + "description": "Immutable Data Collections", + "license": "MIT", + "homepage": "https://immutable-js.com", "author": { "name": "Lee Byron", "url": "https://github.com/leebyron" }, + "repository": { + "type": "git", + "url": "git://github.com/immutable-js/immutable-js.git" + }, "bugs": { "url": "https://github.com/immutable-js/immutable-js/issues" }, - "bundleDependencies": false, - "deprecated": false, - "description": "Immutable Data Collections", + "main": "dist/immutable.js", + "module": "dist/immutable.es.js", + "types": "dist/immutable.d.ts", "files": [ "dist", "README.md", "LICENSE" ], - "homepage": "https://immutable-js.com", "keywords": [ "immutable", "persistent", @@ -49,15 +34,5 @@ "stateless", "sequence", "iteration" - ], - "license": "MIT", - "main": "dist/immutable.js", - "module": "dist/immutable.es.js", - "name": "immutable", - "repository": { - "type": "git", - "url": "git://github.com/immutable-js/immutable-js.git" - }, - "types": "dist/immutable.d.ts", - "version": "5.1.1" -} + ] +} \ No newline at end of file diff --git a/node_modules/is-extglob/package.json b/node_modules/is-extglob/package.json index 39dcdca..7a90836 100644 --- a/node_modules/is-extglob/package.json +++ b/node_modules/is-extglob/package.json @@ -1,48 +1,28 @@ { - "_from": "is-extglob@^2.1.1", - "_id": "is-extglob@2.1.1", - "_inBundle": false, - "_integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "_location": "/is-extglob", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "is-extglob@^2.1.1", - "name": "is-extglob", - "escapedName": "is-extglob", - "rawSpec": "^2.1.1", - "saveSpec": null, - "fetchSpec": "^2.1.1" - }, - "_requiredBy": [ - "/is-glob" - ], - "_resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz", - "_shasum": "a88c02535791f02ed37c76a1b9ea9773c833f8c2", - "_spec": "is-extglob@^2.1.1", - "_where": "/Users/qiuyuan/Desktop/guxuan_icu/demo/node_modules/is-glob", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "name": "is-extglob", + "description": "Returns true if a string has an extglob.", + "version": "2.1.1", + "homepage": "https://github.com/jonschlinkert/is-extglob", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "repository": "jonschlinkert/is-extglob", "bugs": { "url": "https://github.com/jonschlinkert/is-extglob/issues" }, - "bundleDependencies": false, - "deprecated": false, - "description": "Returns true if a string has an extglob.", + "license": "MIT", + "files": [ + "index.js" + ], + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "mocha" + }, "devDependencies": { "gulp-format-md": "^0.1.10", "mocha": "^3.0.2" }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/is-extglob", "keywords": [ "bash", "braces", @@ -62,16 +42,6 @@ "string", "test" ], - "license": "MIT", - "main": "index.js", - "name": "is-extglob", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/is-extglob.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "toc": false, "layout": "default", @@ -95,6 +65,5 @@ "lint": { "reflinks": true } - }, - "version": "2.1.1" + } } diff --git a/node_modules/is-glob/package.json b/node_modules/is-glob/package.json index 80eb553..858af03 100644 --- a/node_modules/is-glob/package.json +++ b/node_modules/is-glob/package.json @@ -1,65 +1,36 @@ { - "_from": "is-glob@^4.0.3", - "_id": "is-glob@4.0.3", - "_inBundle": false, - "_integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "_location": "/is-glob", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "is-glob@^4.0.3", - "name": "is-glob", - "escapedName": "is-glob", - "rawSpec": "^4.0.3", - "saveSpec": null, - "fetchSpec": "^4.0.3" - }, - "_requiredBy": [ - "/@parcel/watcher" + "name": "is-glob", + "description": "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.", + "version": "4.0.3", + "homepage": "https://github.com/micromatch/is-glob", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Brian Woodward (https://twitter.com/doowb)", + "Daniel Perez (https://tuvistavie.com)", + "Jon Schlinkert (http://twitter.com/jonschlinkert)" ], - "_resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz", - "_shasum": "64f61e42cbbb2eec2071a9dac0b28ba1e65d5084", - "_spec": "is-glob@^4.0.3", - "_where": "/Users/qiuyuan/Desktop/guxuan_icu/demo/node_modules/@parcel/watcher", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "micromatch/is-glob", "bugs": { "url": "https://github.com/micromatch/is-glob/issues" }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Brian Woodward", - "url": "https://twitter.com/doowb" - }, - { - "name": "Daniel Perez", - "url": "https://tuvistavie.com" - }, - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - } + "license": "MIT", + "files": [ + "index.js" ], + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "mocha && node benchmark.js" + }, "dependencies": { "is-extglob": "^2.1.1" }, - "deprecated": false, - "description": "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.", "devDependencies": { "gulp-format-md": "^0.1.10", "mocha": "^3.0.2" }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/micromatch/is-glob", "keywords": [ "bash", "braces", @@ -79,16 +50,6 @@ "string", "test" ], - "license": "MIT", - "main": "index.js", - "name": "is-glob", - "repository": { - "type": "git", - "url": "git+https://github.com/micromatch/is-glob.git" - }, - "scripts": { - "test": "mocha && node benchmark.js" - }, "verb": { "layout": "default", "plugins": [ @@ -116,6 +77,5 @@ "verb", "vinyl" ] - }, - "version": "4.0.3" + } } diff --git a/node_modules/is-number/package.json b/node_modules/is-number/package.json index 49a9177..3715072 100644 --- a/node_modules/is-number/package.json +++ b/node_modules/is-number/package.json @@ -1,64 +1,35 @@ { - "_from": "is-number@^7.0.0", - "_id": "is-number@7.0.0", - "_inBundle": false, - "_integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "_location": "/is-number", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "is-number@^7.0.0", - "name": "is-number", - "escapedName": "is-number", - "rawSpec": "^7.0.0", - "saveSpec": null, - "fetchSpec": "^7.0.0" - }, - "_requiredBy": [ - "/to-regex-range" + "name": "is-number", + "description": "Returns true if a number or string value is a finite number. Useful for regex matches, parsing, user input, etc.", + "version": "7.0.0", + "homepage": "https://github.com/jonschlinkert/is-number", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Jon Schlinkert (http://twitter.com/jonschlinkert)", + "Olsten Larck (https://i.am.charlike.online)", + "Rouven Weßling (www.rouvenwessling.de)" ], - "_resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz", - "_shasum": "7535345b896734d5f80c4d06c50955527a14f12b", - "_spec": "is-number@^7.0.0", - "_where": "/Users/qiuyuan/Desktop/guxuan_icu/demo/node_modules/to-regex-range", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "jonschlinkert/is-number", "bugs": { "url": "https://github.com/jonschlinkert/is-number/issues" }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - }, - { - "name": "Olsten Larck", - "url": "https://i.am.charlike.online" - }, - { - "name": "Rouven Weßling", - "url": "www.rouvenwessling.de" - } + "license": "MIT", + "files": [ + "index.js" ], - "deprecated": false, - "description": "Returns true if a number or string value is a finite number. Useful for regex matches, parsing, user input, etc.", + "main": "index.js", + "engines": { + "node": ">=0.12.0" + }, + "scripts": { + "test": "mocha" + }, "devDependencies": { "ansi": "^0.3.1", "benchmark": "^2.1.4", "gulp-format-md": "^1.0.0", "mocha": "^3.5.3" }, - "engines": { - "node": ">=0.12.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/is-number", "keywords": [ "cast", "check", @@ -87,16 +58,6 @@ "typeof", "value" ], - "license": "MIT", - "main": "index.js", - "name": "is-number", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/is-number.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "toc": false, "layout": "default", @@ -117,6 +78,5 @@ "lint": { "reflinks": true } - }, - "version": "7.0.0" + } } diff --git a/node_modules/micromatch/package.json b/node_modules/micromatch/package.json index a94e3b4..d5558bb 100644 --- a/node_modules/micromatch/package.json +++ b/node_modules/micromatch/package.json @@ -1,103 +1,45 @@ { - "_from": "micromatch@^4.0.5", - "_id": "micromatch@4.0.8", - "_inBundle": false, - "_integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", - "_location": "/micromatch", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "micromatch@^4.0.5", - "name": "micromatch", - "escapedName": "micromatch", - "rawSpec": "^4.0.5", - "saveSpec": null, - "fetchSpec": "^4.0.5" - }, - "_requiredBy": [ - "/@parcel/watcher" + "name": "micromatch", + "description": "Glob matching for javascript/node.js. A replacement and faster alternative to minimatch and multimatch.", + "version": "4.0.8", + "homepage": "https://github.com/micromatch/micromatch", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "(https://github.com/DianeLooney)", + "Amila Welihinda (amilajack.com)", + "Bogdan Chadkin (https://github.com/TrySound)", + "Brian Woodward (https://twitter.com/doowb)", + "Devon Govett (http://badassjs.com)", + "Elan Shanker (https://github.com/es128)", + "Fabrício Matté (https://ultcombo.js.org)", + "Jon Schlinkert (http://twitter.com/jonschlinkert)", + "Martin Kolárik (https://kolarik.sk)", + "Olsten Larck (https://i.am.charlike.online)", + "Paul Miller (paulmillr.com)", + "Tom Byrer (https://github.com/tomByrer)", + "Tyler Akins (http://rumkin.com)", + "Peter Bright (https://github.com/drpizza)", + "Kuba Juszczyk (https://github.com/ku8ar)" ], - "_resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.8.tgz", - "_shasum": "d66fa18f3a47076789320b9b1af32bd86d9fa202", - "_spec": "micromatch@^4.0.5", - "_where": "/Users/qiuyuan/Desktop/guxuan_icu/demo/node_modules/@parcel/watcher", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "micromatch/micromatch", "bugs": { "url": "https://github.com/micromatch/micromatch/issues" }, - "bundleDependencies": false, - "contributors": [ - { - "url": "https://github.com/DianeLooney" - }, - { - "name": "Amila Welihinda", - "url": "amilajack.com" - }, - { - "name": "Bogdan Chadkin", - "url": "https://github.com/TrySound" - }, - { - "name": "Brian Woodward", - "url": "https://twitter.com/doowb" - }, - { - "name": "Devon Govett", - "url": "http://badassjs.com" - }, - { - "name": "Elan Shanker", - "url": "https://github.com/es128" - }, - { - "name": "Fabrício Matté", - "url": "https://ultcombo.js.org" - }, - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - }, - { - "name": "Martin Kolárik", - "url": "https://kolarik.sk" - }, - { - "name": "Olsten Larck", - "url": "https://i.am.charlike.online" - }, - { - "name": "Paul Miller", - "url": "paulmillr.com" - }, - { - "name": "Tom Byrer", - "url": "https://github.com/tomByrer" - }, - { - "name": "Tyler Akins", - "url": "http://rumkin.com" - }, - { - "name": "Peter Bright", - "email": "drpizza@quiscalusmexicanus.org", - "url": "https://github.com/drpizza" - }, - { - "name": "Kuba Juszczyk", - "url": "https://github.com/ku8ar" - } + "license": "MIT", + "files": [ + "index.js" ], + "main": "index.js", + "engines": { + "node": ">=8.6" + }, + "scripts": { + "test": "mocha" + }, "dependencies": { "braces": "^3.0.3", "picomatch": "^2.3.1" }, - "deprecated": false, - "description": "Glob matching for javascript/node.js. A replacement and faster alternative to minimatch and multimatch.", "devDependencies": { "fill-range": "^7.0.1", "gulp-format-md": "^2.0.0", @@ -105,13 +47,6 @@ "mocha": "^9.2.2", "time-require": "github:jonschlinkert/time-require" }, - "engines": { - "node": ">=8.6" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/micromatch/micromatch", "keywords": [ "bash", "bracket", @@ -152,16 +87,6 @@ "star", "wildcard" ], - "license": "MIT", - "main": "index.js", - "name": "micromatch", - "repository": { - "type": "git", - "url": "git+https://github.com/micromatch/micromatch.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "toc": "collapsible", "layout": "default", @@ -190,6 +115,5 @@ "minimatch", "multimatch" ] - }, - "version": "4.0.8" + } } diff --git a/node_modules/node-addon-api/package.json b/node_modules/node-addon-api/package.json index 840a487..d772ddc 100644 --- a/node_modules/node-addon-api/package.json +++ b/node_modules/node-addon-api/package.json @@ -1,31 +1,7 @@ { - "_from": "node-addon-api@^7.0.0", - "_id": "node-addon-api@7.1.1", - "_inBundle": false, - "_integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", - "_location": "/node-addon-api", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "node-addon-api@^7.0.0", - "name": "node-addon-api", - "escapedName": "node-addon-api", - "rawSpec": "^7.0.0", - "saveSpec": null, - "fetchSpec": "^7.0.0" - }, - "_requiredBy": [ - "/@parcel/watcher" - ], - "_resolved": "https://registry.npmmirror.com/node-addon-api/-/node-addon-api-7.1.1.tgz", - "_shasum": "1aba6693b0f255258a049d621329329322aad558", - "_spec": "node-addon-api@^7.0.0", - "_where": "/Users/qiuyuan/Desktop/guxuan_icu/demo/node_modules/@parcel/watcher", "bugs": { "url": "https://github.com/nodejs/node-addon-api/issues" }, - "bundleDependencies": false, "contributors": [ { "name": "Abhishek Kumar Singh", @@ -398,6 +374,7 @@ { "name": "Vladimir Morozov", "url": "https://github.com/vmoroz" + }, { "name": "WenheLI", @@ -440,7 +417,6 @@ "url": "https://github.com/tuhalf" } ], - "deprecated": false, "description": "Node.js API (Node-API)", "devDependencies": { "benchmark": "^2.1.4", @@ -458,11 +434,6 @@ "safe-buffer": "^5.1.1" }, "directories": {}, - "files": [ - "*.{c,h,gyp,gypi}", - "package-support.json", - "tools/" - ], "gypfile": false, "homepage": "https://github.com/nodejs/node-addon-api", "keywords": [ @@ -479,25 +450,31 @@ "license": "MIT", "main": "index.js", "name": "node-addon-api", - "pre-commit": "lint", + "readme": "README.md", "repository": { "type": "git", "url": "git://github.com/nodejs/node-addon-api.git" }, + "files": [ + "*.{c,h,gyp,gypi}", + "package-support.json", + "tools/" + ], "scripts": { + "prebenchmark": "node-gyp rebuild -C benchmark", "benchmark": "node benchmark", + "pretest": "node-gyp rebuild -C test", + "test": "node test", + "test:debug": "node-gyp rebuild -C test --debug && NODE_API_BUILD_CONFIG=Debug node ./test/index.js", + "predev": "node-gyp rebuild -C test --debug", "dev": "node test", + "predev:incremental": "node-gyp configure build -C test --debug", "dev:incremental": "node test", "doc": "doxygen doc/Doxyfile", "lint": "node tools/eslint-format && node tools/clang-format", - "lint:fix": "node tools/clang-format --fix && node tools/eslint-format --fix", - "prebenchmark": "node-gyp rebuild -C benchmark", - "predev": "node-gyp rebuild -C test --debug", - "predev:incremental": "node-gyp configure build -C test --debug", - "pretest": "node-gyp rebuild -C test", - "test": "node test", - "test:debug": "node-gyp rebuild -C test --debug && NODE_API_BUILD_CONFIG=Debug node ./test/index.js" + "lint:fix": "node tools/clang-format --fix && node tools/eslint-format --fix" }, - "support": true, - "version": "7.1.1" + "pre-commit": "lint", + "version": "7.1.1", + "support": true } diff --git a/node_modules/picomatch/package.json b/node_modules/picomatch/package.json index 9d2f601..3db22d4 100644 --- a/node_modules/picomatch/package.json +++ b/node_modules/picomatch/package.json @@ -1,37 +1,30 @@ { - "_from": "picomatch@^2.3.1", - "_id": "picomatch@2.3.1", - "_inBundle": false, - "_integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "_location": "/picomatch", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "picomatch@^2.3.1", - "name": "picomatch", - "escapedName": "picomatch", - "rawSpec": "^2.3.1", - "saveSpec": null, - "fetchSpec": "^2.3.1" - }, - "_requiredBy": [ - "/micromatch" - ], - "_resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz", - "_shasum": "3ba3833733646d9d3e4995946c1365a67fb07a42", - "_spec": "picomatch@^2.3.1", - "_where": "/Users/qiuyuan/Desktop/guxuan_icu/demo/node_modules/micromatch", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "name": "picomatch", + "description": "Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.", + "version": "2.3.1", + "homepage": "https://github.com/micromatch/picomatch", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "funding": "https://github.com/sponsors/jonschlinkert", + "repository": "micromatch/picomatch", "bugs": { "url": "https://github.com/micromatch/picomatch/issues" }, - "bundleDependencies": false, - "deprecated": false, - "description": "Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.", + "license": "MIT", + "files": [ + "index.js", + "lib" + ], + "main": "index.js", + "engines": { + "node": ">=8.6" + }, + "scripts": { + "lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .", + "mocha": "mocha --reporter dot", + "test": "npm run lint && npm run mocha", + "test:ci": "npm run test:cover", + "test:cover": "nyc npm run mocha" + }, "devDependencies": { "eslint": "^6.8.0", "fill-range": "^7.0.1", @@ -40,23 +33,11 @@ "nyc": "^15.0.0", "time-require": "github:jonschlinkert/time-require" }, - "engines": { - "node": ">=8.6" - }, - "files": [ - "index.js", - "lib" - ], - "funding": "https://github.com/sponsors/jonschlinkert", - "homepage": "https://github.com/micromatch/picomatch", "keywords": [ "glob", "match", "picomatch" ], - "license": "MIT", - "main": "index.js", - "name": "picomatch", "nyc": { "reporter": [ "html", @@ -64,17 +45,6 @@ "text-summary" ] }, - "repository": { - "type": "git", - "url": "git+https://github.com/micromatch/picomatch.git" - }, - "scripts": { - "lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .", - "mocha": "mocha --reporter dot", - "test": "npm run lint && npm run mocha", - "test:ci": "npm run test:cover", - "test:cover": "nyc npm run mocha" - }, "verb": { "toc": { "render": true, @@ -107,6 +77,5 @@ "nanomatch", "picomatch" ] - }, - "version": "2.3.1" + } } diff --git a/node_modules/readdirp/package.json b/node_modules/readdirp/package.json index ab88181..118177c 100644 --- a/node_modules/readdirp/package.json +++ b/node_modules/readdirp/package.json @@ -1,68 +1,24 @@ { - "_from": "readdirp@^4.0.1", - "_id": "readdirp@4.1.2", - "_inBundle": false, - "_integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", - "_location": "/readdirp", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "readdirp@^4.0.1", - "name": "readdirp", - "escapedName": "readdirp", - "rawSpec": "^4.0.1", - "saveSpec": null, - "fetchSpec": "^4.0.1" - }, - "_requiredBy": [ - "/chokidar" - ], - "_resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-4.1.2.tgz", - "_shasum": "eb85801435fbf2a7ee58f19e0921b068fc69948d", - "_spec": "readdirp@^4.0.1", - "_where": "/Users/qiuyuan/Desktop/guxuan_icu/demo/node_modules/chokidar", - "author": { - "name": "Thorsten Lorenz", - "email": "thlorenz@gmx.de", - "url": "thlorenz.com" + "name": "readdirp", + "description": "Recursive version of fs.readdir with small RAM & CPU footprint.", + "version": "4.1.2", + "homepage": "https://github.com/paulmillr/readdirp", + "repository": { + "type": "git", + "url": "git://github.com/paulmillr/readdirp.git" }, + "license": "MIT", "bugs": { "url": "https://github.com/paulmillr/readdirp/issues" }, - "bundleDependencies": false, + "author": "Thorsten Lorenz (thlorenz.com)", "contributors": [ - { - "name": "Thorsten Lorenz", - "email": "thlorenz@gmx.de", - "url": "thlorenz.com" - }, - { - "name": "Paul Miller", - "url": "https://paulmillr.com" - } + "Thorsten Lorenz (thlorenz.com)", + "Paul Miller (https://paulmillr.com)" ], - "deprecated": false, - "description": "Recursive version of fs.readdir with small RAM & CPU footprint.", - "devDependencies": { - "@paulmillr/jsbt": "0.3.1", - "@types/node": "20.14.8", - "c8": "10.1.3", - "chai": "4.3.4", - "chai-subset": "1.6.0", - "micro-should": "0.5.0", - "prettier": "3.1.1", - "typescript": "5.5.2" - }, "engines": { "node": ">= 14.18.0" }, - "exports": { - ".": { - "import": "./esm/index.js", - "require": "./index.js" - } - }, "files": [ "index.js", "index.d.ts", @@ -70,11 +26,16 @@ "index.js.map", "esm" ], - "funding": { - "type": "individual", - "url": "https://paulmillr.com/funding/" + "main": "./index.js", + "module": "./esm/index.js", + "types": "./index.d.ts", + "exports": { + ".": { + "import": "./esm/index.js", + "require": "./index.js" + } }, - "homepage": "https://github.com/paulmillr/readdirp", + "sideEffects": false, "keywords": [ "recursive", "fs", @@ -85,22 +46,25 @@ "find", "filter" ], - "license": "MIT", - "main": "./index.js", - "module": "./esm/index.js", - "name": "readdirp", - "repository": { - "type": "git", - "url": "git://github.com/paulmillr/readdirp.git" - }, "scripts": { "build": "tsc && tsc -p tsconfig.cjs.json", - "format": "prettier --write index.ts test/index.test.js", "lint": "prettier --check index.ts test/index.test.js", + "format": "prettier --write index.ts test/index.test.js", "test": "node test/index.test.js", "test:coverage": "c8 node test/index.test.js" }, - "sideEffects": false, - "types": "./index.d.ts", - "version": "4.1.2" -} + "devDependencies": { + "@paulmillr/jsbt": "0.3.1", + "@types/node": "20.14.8", + "c8": "10.1.3", + "chai": "4.3.4", + "chai-subset": "1.6.0", + "micro-should": "0.5.0", + "prettier": "3.1.1", + "typescript": "5.5.2" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } +} \ No newline at end of file diff --git a/node_modules/sass/package.json b/node_modules/sass/package.json index f877e8d..fa8a084 100644 --- a/node_modules/sass/package.json +++ b/node_modules/sass/package.json @@ -1,80 +1 @@ -{ - "_from": "sass", - "_id": "sass@1.87.0", - "_inBundle": false, - "_integrity": "sha512-d0NoFH4v6SjEK7BoX810Jsrhj7IQSYHAHLi/iSpgqKc7LaIDshFRlSg5LOymf9FqQhxEHs2W5ZQXlvy0KD45Uw==", - "_location": "/sass", - "_phantomChildren": {}, - "_requested": { - "type": "tag", - "registry": true, - "raw": "sass", - "name": "sass", - "escapedName": "sass", - "rawSpec": "", - "saveSpec": null, - "fetchSpec": "latest" - }, - "_requiredBy": [ - "#DEV:/", - "#USER" - ], - "_resolved": "https://registry.npmmirror.com/sass/-/sass-1.87.0.tgz", - "_shasum": "8cceb36fa63fb48a8d5d7f2f4c13b49c524b723e", - "_spec": "sass", - "_where": "/Users/qiuyuan/Desktop/guxuan_icu/demo", - "author": { - "name": "Natalie Weizenbaum", - "email": "nweiz@google.com", - "url": "https://github.com/nex3" - }, - "bin": { - "sass": "sass.js" - }, - "bugs": { - "url": "https://github.com/sass/dart-sass/issues" - }, - "bundleDependencies": false, - "dependencies": { - "@parcel/watcher": "^2.4.1", - "chokidar": "^4.0.0", - "immutable": "^5.0.2", - "source-map-js": ">=0.6.2 <2.0.0" - }, - "deprecated": false, - "description": "A pure JavaScript implementation of Sass.", - "engines": { - "node": ">=14.0.0" - }, - "exports": { - "types": "./types/index.d.ts", - "node": { - "require": "./sass.node.js", - "default": "./sass.node.mjs" - }, - "default": { - "require": "./sass.default.cjs", - "default": "./sass.default.js" - } - }, - "homepage": "https://github.com/sass/dart-sass", - "keywords": [ - "style", - "scss", - "sass", - "preprocessor", - "css" - ], - "license": "MIT", - "main": "sass.node.js", - "name": "sass", - "optionalDependencies": { - "@parcel/watcher": "^2.4.1" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/sass/dart-sass.git" - }, - "types": "types/index.d.ts", - "version": "1.87.0" -} +{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":"https://github.com/sass/dart-sass/issues","homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"https://github.com/sass/dart-sass"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.87.0","bin":{"sass":"sass.js"},"main":"sass.node.js"} \ No newline at end of file diff --git a/node_modules/source-map-js/package.json b/node_modules/source-map-js/package.json index ea97f06..f58dbeb 100644 --- a/node_modules/source-map-js/package.json +++ b/node_modules/source-map-js/package.json @@ -1,216 +1,71 @@ { - "_from": "source-map-js@>=0.6.2 <2.0.0", - "_id": "source-map-js@1.2.1", - "_inBundle": false, - "_integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", - "_location": "/source-map-js", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "source-map-js@>=0.6.2 <2.0.0", - "name": "source-map-js", - "escapedName": "source-map-js", - "rawSpec": ">=0.6.2 <2.0.0", - "saveSpec": null, - "fetchSpec": ">=0.6.2 <2.0.0" - }, - "_requiredBy": [ - "/sass" - ], - "_resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz", - "_shasum": "1ce5650fddd87abc099eda37dcff024c2667ae46", - "_spec": "source-map-js@>=0.6.2 <2.0.0", - "_where": "/Users/qiuyuan/Desktop/guxuan_icu/demo/node_modules/sass", - "author": { - "name": "Valentin 7rulnik Semirulnik", - "email": "v7rulnik@gmail.com" - }, - "bugs": { - "url": "https://github.com/7rulnik/source-map-js/issues" - }, - "bundleDependencies": false, - "clean-publish": { - "cleanDocs": true - }, - "contributors": [ - { - "name": "Nick Fitzgerald", - "email": "nfitzgerald@mozilla.com" - }, - { - "name": "Tobias Koppers", - "email": "tobias.koppers@googlemail.com" - }, - { - "name": "Duncan Beevers", - "email": "duncan@dweebd.com" - }, - { - "name": "Stephen Crane", - "email": "scrane@mozilla.com" - }, - { - "name": "Ryan Seddon", - "email": "seddon.ryan@gmail.com" - }, - { - "name": "Miles Elam", - "email": "miles.elam@deem.com" - }, - { - "name": "Mihai Bazon", - "email": "mihai.bazon@gmail.com" - }, - { - "name": "Michael Ficarra", - "email": "github.public.email@michael.ficarra.me" - }, - { - "name": "Todd Wolfson", - "email": "todd@twolfson.com" - }, - { - "name": "Alexander Solovyov", - "email": "alexander@solovyov.net" - }, - { - "name": "Felix Gnass", - "email": "fgnass@gmail.com" - }, - { - "name": "Conrad Irwin", - "email": "conrad.irwin@gmail.com" - }, - { - "name": "usrbincc", - "email": "usrbincc@yahoo.com" - }, - { - "name": "David Glasser", - "email": "glasser@davidglasser.net" - }, - { - "name": "Chase Douglas", - "email": "chase@newrelic.com" - }, - { - "name": "Evan Wallace", - "email": "evan.exe@gmail.com" - }, - { - "name": "Heather Arthur", - "email": "fayearthur@gmail.com" - }, - { - "name": "Hugh Kennedy", - "email": "hughskennedy@gmail.com" - }, - { - "name": "David Glasser", - "email": "glasser@davidglasser.net" - }, - { - "name": "Simon Lydell", - "email": "simon.lydell@gmail.com" - }, - { - "name": "Jmeas Smith", - "email": "jellyes2@gmail.com" - }, - { - "name": "Michael Z Goddard", - "email": "mzgoddard@gmail.com" - }, - { - "name": "azu", - "email": "azu@users.noreply.github.com" - }, - { - "name": "John Gozde", - "email": "john@gozde.ca" - }, - { - "name": "Adam Kirkton", - "email": "akirkton@truefitinnovation.com" - }, - { - "name": "Chris Montgomery", - "email": "christopher.montgomery@dowjones.com" - }, - { - "name": "J. Ryan Stinnett", - "email": "jryans@gmail.com" - }, - { - "name": "Jack Herrington", - "email": "jherrington@walmartlabs.com" - }, - { - "name": "Chris Truter", - "email": "jeffpalentine@gmail.com" - }, - { - "name": "Daniel Espeset", - "email": "daniel@danielespeset.com" - }, - { - "name": "Jamie Wong", - "email": "jamie.lf.wong@gmail.com" - }, - { - "name": "Eddy Bruël", - "email": "ejpbruel@mozilla.com" - }, - { - "name": "Hawken Rives", - "email": "hawkrives@gmail.com" - }, - { - "name": "Gilad Peleg", - "email": "giladp007@gmail.com" - }, - { - "name": "djchie", - "email": "djchie.dev@gmail.com" - }, - { - "name": "Gary Ye", - "email": "garysye@gmail.com" - }, - { - "name": "Nicolas Lalevée", - "email": "nicolas.lalevee@hibnet.org" - } - ], - "deprecated": false, + "name": "source-map-js", "description": "Generates and consumes source maps", - "devDependencies": { - "clean-publish": "^3.1.0", - "doctoc": "^0.15.0", - "webpack": "^1.12.0" - }, - "engines": { - "node": ">=0.10.0" - }, + "version": "1.2.1", + "homepage": "https://github.com/7rulnik/source-map-js", + "author": "Valentin 7rulnik Semirulnik ", + "contributors": [ + "Nick Fitzgerald ", + "Tobias Koppers ", + "Duncan Beevers ", + "Stephen Crane ", + "Ryan Seddon ", + "Miles Elam ", + "Mihai Bazon ", + "Michael Ficarra ", + "Todd Wolfson ", + "Alexander Solovyov ", + "Felix Gnass ", + "Conrad Irwin ", + "usrbincc ", + "David Glasser ", + "Chase Douglas ", + "Evan Wallace ", + "Heather Arthur ", + "Hugh Kennedy ", + "David Glasser ", + "Simon Lydell ", + "Jmeas Smith ", + "Michael Z Goddard ", + "azu ", + "John Gozde ", + "Adam Kirkton ", + "Chris Montgomery ", + "J. Ryan Stinnett ", + "Jack Herrington ", + "Chris Truter ", + "Daniel Espeset ", + "Jamie Wong ", + "Eddy Bruël ", + "Hawken Rives ", + "Gilad Peleg ", + "djchie ", + "Gary Ye ", + "Nicolas Lalevée " + ], + "repository": "7rulnik/source-map-js", + "main": "./source-map.js", "files": [ "source-map.js", "source-map.d.ts", "lib/" ], - "homepage": "https://github.com/7rulnik/source-map-js", - "license": "BSD-3-Clause", - "main": "./source-map.js", - "name": "source-map-js", - "repository": { - "type": "git", - "url": "git+https://github.com/7rulnik/source-map-js.git" + "engines": { + "node": ">=0.10.0" }, + "license": "BSD-3-Clause", "scripts": { - "build": "webpack --color", "test": "npm run build && node test/run-tests.js", + "build": "webpack --color", "toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md" }, - "typings": "source-map.d.ts", - "version": "1.2.1" + "devDependencies": { + "clean-publish": "^3.1.0", + "doctoc": "^0.15.0", + "webpack": "^1.12.0" + }, + "clean-publish": { + "cleanDocs": true + }, + "typings": "source-map.d.ts" } diff --git a/node_modules/to-regex-range/package.json b/node_modules/to-regex-range/package.json index e8a4090..4ef194f 100644 --- a/node_modules/to-regex-range/package.json +++ b/node_modules/to-regex-range/package.json @@ -1,50 +1,31 @@ { - "_from": "to-regex-range@^5.0.1", - "_id": "to-regex-range@5.0.1", - "_inBundle": false, - "_integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "_location": "/to-regex-range", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "to-regex-range@^5.0.1", - "name": "to-regex-range", - "escapedName": "to-regex-range", - "rawSpec": "^5.0.1", - "saveSpec": null, - "fetchSpec": "^5.0.1" - }, - "_requiredBy": [ - "/fill-range" + "name": "to-regex-range", + "description": "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.", + "version": "5.0.1", + "homepage": "https://github.com/micromatch/to-regex-range", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Jon Schlinkert (http://twitter.com/jonschlinkert)", + "Rouven Weßling (www.rouvenwessling.de)" ], - "_resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz", - "_shasum": "1648c44aae7c8d988a326018ed72f5b4dd0392e4", - "_spec": "to-regex-range@^5.0.1", - "_where": "/Users/qiuyuan/Desktop/guxuan_icu/demo/node_modules/fill-range", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "micromatch/to-regex-range", "bugs": { "url": "https://github.com/micromatch/to-regex-range/issues" }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - }, - { - "name": "Rouven Weßling", - "url": "www.rouvenwessling.de" - } + "license": "MIT", + "files": [ + "index.js" ], + "main": "index.js", + "engines": { + "node": ">=8.0" + }, + "scripts": { + "test": "mocha" + }, "dependencies": { "is-number": "^7.0.0" }, - "deprecated": false, - "description": "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.", "devDependencies": { "fill-range": "^6.0.0", "gulp-format-md": "^2.0.0", @@ -52,13 +33,6 @@ "text-table": "^0.2.0", "time-diff": "^0.3.1" }, - "engines": { - "node": ">=8.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/micromatch/to-regex-range", "keywords": [ "bash", "date", @@ -84,16 +58,6 @@ "regular expression", "sequence" ], - "license": "MIT", - "main": "index.js", - "name": "to-regex-range", - "repository": { - "type": "git", - "url": "git+https://github.com/micromatch/to-regex-range.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "layout": "default", "toc": false, @@ -120,6 +84,5 @@ "repeat-string" ] } - }, - "version": "5.0.1" + } } diff --git a/node_modules/uview-ui/package.json b/node_modules/uview-ui/package.json index a80665d..fb96638 100644 --- a/node_modules/uview-ui/package.json +++ b/node_modules/uview-ui/package.json @@ -1,120 +1,87 @@ { - "_from": "uview-ui@2.0.34", - "_id": "uview-ui@2.0.34", - "_inBundle": false, - "_integrity": "sha512-usJHnPCtk45yLTWTXTpLX9Vuqhzjth/+4t/m+S3J5bZuahv49mVQ126rtSnuAWWVkOUtKCX4CU83gFHZj8nP5g==", - "_location": "/uview-ui", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "uview-ui@2.0.34", - "name": "uview-ui", - "escapedName": "uview-ui", - "rawSpec": "2.0.34", - "saveSpec": null, - "fetchSpec": "2.0.34" - }, - "_requiredBy": [ - "#USER", - "/" - ], - "_resolved": "https://registry.npmmirror.com/uview-ui/-/uview-ui-2.0.34.tgz", - "_shasum": "537ab54f115ec176846a7f426089d22d7cd75477", - "_spec": "uview-ui@2.0.34", - "_where": "/Users/qiuyuan/Desktop/guxuan_icu/demo", - "bugs": { - "url": "https://github.com/umicro/uView2.0/issues" - }, - "bundleDependencies": false, - "dcloudext": { - "category": [ - "前端组件", - "通用组件" + "id": "uview-ui", + "name": "uview-ui", + "displayName": "uView2.0重磅发布,利剑出鞘,一统江湖", + "version": "2.0.34", + "description": "uView UI已完美兼容nvue,全面的组件和便捷的工具会让您信手拈来,如鱼得水", + "keywords": [ + "uview", + "uview", + "ui", + "ui", + "uni-app", + "uni-app", + "ui" ], - "sale": { - "regular": { - "price": "0.00" - }, - "sourcecode": { - "price": "0.00" - } - }, - "contact": { - "qq": "1416956117" - }, - "declaration": { - "ads": "无", - "data": "无", - "permissions": "无" - }, - "npmurl": "https://www.npmjs.com/package/uview-ui" - }, - "deprecated": false, - "description": "uView UI已完美兼容nvue,全面的组件和便捷的工具会让您信手拈来,如鱼得水", - "displayName": "uView2.0重磅发布,利剑出鞘,一统江湖", - "engines": { - "HBuilderX": "^3.1.0" - }, - "homepage": "https://github.com/umicro/uView2.0#readme", - "id": "uview-ui", - "keywords": [ - "uview", - "uview", - "ui", - "ui", - "uni-app", - "uni-app", - "ui" - ], - "name": "uview-ui", - "repository": { - "type": "git", - "url": "git+https://github.com/umicro/uView2.0.git" - }, - "uni_modules": { - "dependencies": [], - "encrypt": [], - "platforms": { - "cloud": { - "tcb": "y", - "aliyun": "y" - }, - "client": { - "Vue": { - "vue2": "y", - "vue3": "n" - }, - "App": { - "app-vue": "y", - "app-nvue": "y" - }, - "H5-mobile": { - "Safari": "y", - "Android Browser": "y", - "微信浏览器(Android)": "y", - "QQ浏览器(Android)": "y" - }, - "H5-pc": { - "Chrome": "y", - "IE": "y", - "Edge": "y", - "Firefox": "y", - "Safari": "y" - }, - "小程序": { - "微信": "y", - "阿里": "y", - "百度": "y", - "字节跳动": "y", - "QQ": "y" - }, - "快应用": { - "华为": "y", - "联盟": "y" - } - } - } - }, - "version": "2.0.34" + "repository": "https://github.com/umicro/uView2.0", + "engines": { + "HBuilderX": "^3.1.0" + }, + "dcloudext": { + "category": [ + "前端组件", + "通用组件" + ], + "sale": { + "regular": { + "price": "0.00" + }, + "sourcecode": { + "price": "0.00" + } + }, + "contact": { + "qq": "1416956117" + }, + "declaration": { + "ads": "无", + "data": "无", + "permissions": "无" + }, + "npmurl": "https://www.npmjs.com/package/uview-ui" + }, + "uni_modules": { + "dependencies": [], + "encrypt": [], + "platforms": { + "cloud": { + "tcb": "y", + "aliyun": "y" + }, + "client": { + "Vue": { + "vue2": "y", + "vue3": "n" + }, + "App": { + "app-vue": "y", + "app-nvue": "y" + }, + "H5-mobile": { + "Safari": "y", + "Android Browser": "y", + "微信浏览器(Android)": "y", + "QQ浏览器(Android)": "y" + }, + "H5-pc": { + "Chrome": "y", + "IE": "y", + "Edge": "y", + "Firefox": "y", + "Safari": "y" + }, + "小程序": { + "微信": "y", + "阿里": "y", + "百度": "y", + "字节跳动": "y", + "QQ": "y" + }, + "快应用": { + "华为": "y", + "联盟": "y" + } + } + } + } } diff --git a/package-lock.json b/package-lock.json index e38ddc9..890a60f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,15 +1,46 @@ { "name": "demo", "version": "1.0.0", - "lockfileVersion": 1, + "lockfileVersion": 3, "requires": true, - "dependencies": { - "@parcel/watcher": { + "packages": { + "": { + "name": "demo", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "@dcloudio/uni-ui": "^1.5.8", + "sass": "^1.87.0", + "uview-ui": "^2.0.34" + }, + "devDependencies": {} + }, + "node_modules/@dcloudio/uni-ui": { + "version": "1.5.8", + "resolved": "https://registry.npmmirror.com/@dcloudio/uni-ui/-/uni-ui-1.5.8.tgz", + "integrity": "sha512-9gnNzr11iG06s97A3WBplqwcAOua7vG7j70hEoPlGoUgDA7at7wo84nkuyXycQaveAHSqNhbCGHVsUUtQcGkJQ==", + "license": "Apache-2.0" + }, + "node_modules/@parcel/watcher": { "version": "2.5.1", "resolved": "https://registry.npmmirror.com/@parcel/watcher/-/watcher-2.5.1.tgz", "integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==", + "hasInstallScript": true, "optional": true, - "requires": { + "dependencies": { + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { "@parcel/watcher-android-arm64": "2.5.1", "@parcel/watcher-darwin-arm64": "2.5.1", "@parcel/watcher-darwin-x64": "2.5.1", @@ -22,205 +53,430 @@ "@parcel/watcher-linux-x64-musl": "2.5.1", "@parcel/watcher-win32-arm64": "2.5.1", "@parcel/watcher-win32-ia32": "2.5.1", - "@parcel/watcher-win32-x64": "2.5.1", - "detect-libc": "^1.0.3", - "is-glob": "^4.0.3", - "micromatch": "^4.0.5", - "node-addon-api": "^7.0.0" + "@parcel/watcher-win32-x64": "2.5.1" } }, - "@parcel/watcher-android-arm64": { + "node_modules/@parcel/watcher-android-arm64": { "version": "2.5.1", "resolved": "https://registry.npmmirror.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz", "integrity": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==", - "optional": true + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } }, - "@parcel/watcher-darwin-arm64": { + "node_modules/@parcel/watcher-darwin-arm64": { "version": "2.5.1", "resolved": "https://registry.npmmirror.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz", "integrity": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==", - "optional": true + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } }, - "@parcel/watcher-darwin-x64": { + "node_modules/@parcel/watcher-darwin-x64": { "version": "2.5.1", "resolved": "https://registry.npmmirror.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz", "integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==", - "optional": true + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } }, - "@parcel/watcher-freebsd-x64": { + "node_modules/@parcel/watcher-freebsd-x64": { "version": "2.5.1", "resolved": "https://registry.npmmirror.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz", "integrity": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==", - "optional": true + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } }, - "@parcel/watcher-linux-arm-glibc": { + "node_modules/@parcel/watcher-linux-arm-glibc": { "version": "2.5.1", "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz", "integrity": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==", - "optional": true + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } }, - "@parcel/watcher-linux-arm-musl": { + "node_modules/@parcel/watcher-linux-arm-musl": { "version": "2.5.1", "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz", "integrity": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==", - "optional": true + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } }, - "@parcel/watcher-linux-arm64-glibc": { + "node_modules/@parcel/watcher-linux-arm64-glibc": { "version": "2.5.1", "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz", "integrity": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==", - "optional": true + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } }, - "@parcel/watcher-linux-arm64-musl": { + "node_modules/@parcel/watcher-linux-arm64-musl": { "version": "2.5.1", "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz", "integrity": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==", - "optional": true + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } }, - "@parcel/watcher-linux-x64-glibc": { + "node_modules/@parcel/watcher-linux-x64-glibc": { "version": "2.5.1", "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz", "integrity": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==", - "optional": true + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } }, - "@parcel/watcher-linux-x64-musl": { + "node_modules/@parcel/watcher-linux-x64-musl": { "version": "2.5.1", "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz", "integrity": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==", - "optional": true + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } }, - "@parcel/watcher-win32-arm64": { + "node_modules/@parcel/watcher-win32-arm64": { "version": "2.5.1", "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz", "integrity": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==", - "optional": true + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } }, - "@parcel/watcher-win32-ia32": { + "node_modules/@parcel/watcher-win32-ia32": { "version": "2.5.1", "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz", "integrity": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==", - "optional": true + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } }, - "@parcel/watcher-win32-x64": { + "node_modules/@parcel/watcher-win32-x64": { "version": "2.5.1", "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz", "integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==", - "optional": true + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } }, - "braces": { + "node_modules/braces": { "version": "3.0.3", "resolved": "https://registry.npmmirror.com/braces/-/braces-3.0.3.tgz", "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "optional": true, - "requires": { + "dependencies": { "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" } }, - "chokidar": { + "node_modules/chokidar": { "version": "4.0.3", "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-4.0.3.tgz", "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", - "requires": { + "dependencies": { "readdirp": "^4.0.1" + }, + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" } }, - "detect-libc": { + "node_modules/detect-libc": { "version": "1.0.3", "resolved": "https://registry.npmmirror.com/detect-libc/-/detect-libc-1.0.3.tgz", "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", - "optional": true + "optional": true, + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } }, - "fill-range": { + "node_modules/fill-range": { "version": "7.1.1", "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.1.1.tgz", "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "optional": true, - "requires": { + "dependencies": { "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "immutable": { + "node_modules/immutable": { "version": "5.1.1", "resolved": "https://registry.npmmirror.com/immutable/-/immutable-5.1.1.tgz", "integrity": "sha512-3jatXi9ObIsPGr3N5hGw/vWWcTkq6hUYhpQz4k0wLC+owqWi/LiugIw9x0EdNZ2yGedKN/HzePiBvaJRXa0Ujg==" }, - "is-extglob": { + "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "optional": true + "optional": true, + "engines": { + "node": ">=0.10.0" + } }, - "is-glob": { + "node_modules/is-glob": { "version": "4.0.3", "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "optional": true, - "requires": { + "dependencies": { "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "is-number": { + "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "optional": true + "optional": true, + "engines": { + "node": ">=0.12.0" + } }, - "micromatch": { + "node_modules/micromatch": { "version": "4.0.8", "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.8.tgz", "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "optional": true, - "requires": { + "dependencies": { "braces": "^3.0.3", "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" } }, - "node-addon-api": { + "node_modules/node-addon-api": { "version": "7.1.1", "resolved": "https://registry.npmmirror.com/node-addon-api/-/node-addon-api-7.1.1.tgz", "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", "optional": true }, - "picomatch": { + "node_modules/picomatch": { "version": "2.3.1", "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "optional": true + "optional": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } }, - "readdirp": { + "node_modules/readdirp": { "version": "4.1.2", "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-4.1.2.tgz", - "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==" + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", + "engines": { + "node": ">= 14.18.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } }, - "sass": { + "node_modules/sass": { "version": "1.87.0", "resolved": "https://registry.npmmirror.com/sass/-/sass-1.87.0.tgz", "integrity": "sha512-d0NoFH4v6SjEK7BoX810Jsrhj7IQSYHAHLi/iSpgqKc7LaIDshFRlSg5LOymf9FqQhxEHs2W5ZQXlvy0KD45Uw==", - "requires": { - "@parcel/watcher": "^2.4.1", + "dependencies": { "chokidar": "^4.0.0", "immutable": "^5.0.2", "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" + }, + "optionalDependencies": { + "@parcel/watcher": "^2.4.1" } }, - "source-map-js": { + "node_modules/source-map-js": { "version": "1.2.1", "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz", - "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==" + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "engines": { + "node": ">=0.10.0" + } }, - "to-regex-range": { + "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "optional": true, - "requires": { + "dependencies": { "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" } }, - "uview-ui": { + "node_modules/uview-ui": { "version": "2.0.34", "resolved": "https://registry.npmmirror.com/uview-ui/-/uview-ui-2.0.34.tgz", - "integrity": "sha512-usJHnPCtk45yLTWTXTpLX9Vuqhzjth/+4t/m+S3J5bZuahv49mVQ126rtSnuAWWVkOUtKCX4CU83gFHZj8nP5g==" + "integrity": "sha512-usJHnPCtk45yLTWTXTpLX9Vuqhzjth/+4t/m+S3J5bZuahv49mVQ126rtSnuAWWVkOUtKCX4CU83gFHZj8nP5g==", + "engines": { + "HBuilderX": "^3.1.0" + } } } } diff --git a/package.json b/package.json index ba5ae0b..936ea13 100644 --- a/package.json +++ b/package.json @@ -4,10 +4,10 @@ "description": "", "main": "main.js", "dependencies": { + "@dcloudio/uni-ui": "^1.5.8", "sass": "^1.87.0", "uview-ui": "^2.0.34" }, - "devDependencies": {}, "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, diff --git a/pages.json b/pages.json index d448a4d..5cd0a93 100644 --- a/pages.json +++ b/pages.json @@ -22,6 +22,14 @@ "usingComponents": {} } }, + { + "path": "pages/chat/chatPage", + "style": { + "navigationBarTitleText": "AI助手", + "navigationStyle": "default", + "usingComponents": {} + } + }, // 服务中心 { "path": "pages/service/index", diff --git a/pages/chat/chatPage.vue b/pages/chat/chatPage.vue new file mode 100644 index 0000000..146b9f2 --- /dev/null +++ b/pages/chat/chatPage.vue @@ -0,0 +1,575 @@ + + + + + \ No newline at end of file diff --git a/pages/chat/index.vue b/pages/chat/index.vue index 0864999..81ca8f6 100644 --- a/pages/chat/index.vue +++ b/pages/chat/index.vue @@ -1,11 +1,11 @@