mirror of
https://github.com/Nezumi-2711/onedrive-vercel-index.git
synced 2026-09-22 13:38:45 +00:00
migrate from i18next-scanner to i18next-parser
i18next-scanner does not support i18next JSON v4 format
This commit is contained in:
@@ -0,0 +1,17 @@
|
|||||||
|
const path = require('path')
|
||||||
|
|
||||||
|
const { i18n, localePath } = require('./next-i18next.config')
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
createOldCatalogs: false,
|
||||||
|
defaultNamespace: 'common',
|
||||||
|
defaultValue: (lng, _ns, key) => (lng === i18n.defaultLocale ? key : ''),
|
||||||
|
keySeparator: false,
|
||||||
|
namespaceSeparator: false,
|
||||||
|
pluralSeparator: '——',
|
||||||
|
lineEnding: 'lf',
|
||||||
|
locales: i18n.locales,
|
||||||
|
output: path.join(localePath, '$LOCALE/$NAMESPACE.json'),
|
||||||
|
input: ['**/*.{ts,tsx}', '!**/node_modules/**'],
|
||||||
|
sort: true
|
||||||
|
}
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
const path = require('path')
|
|
||||||
const tsTransform = require('i18next-scanner-typescript')
|
|
||||||
|
|
||||||
const { i18n, localePath } = require('./next-i18next.config')
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
input: ['**/*.{ts,tsx}', '!**/node_modules/**'],
|
|
||||||
options: {
|
|
||||||
sort: true,
|
|
||||||
removeUnusedKeys: true,
|
|
||||||
func: {
|
|
||||||
list: ['t']
|
|
||||||
},
|
|
||||||
trans: {
|
|
||||||
fallbackKey: (_ns, val) => val
|
|
||||||
},
|
|
||||||
lngs: i18n.locales,
|
|
||||||
ns: ['common'],
|
|
||||||
defaultLng: i18n.defaultLocale,
|
|
||||||
defaultNs: 'common',
|
|
||||||
defaultValue: (lng, _ns, key) => (lng === i18n.defaultLocale ? key : ''),
|
|
||||||
resource: {
|
|
||||||
loadPath: path.join(localePath, '{{lng}}/{{ns}}.json'),
|
|
||||||
savePath: path.join(localePath, '{{lng}}/{{ns}}.json')
|
|
||||||
},
|
|
||||||
nsSeparator: false,
|
|
||||||
keySeparator: false
|
|
||||||
},
|
|
||||||
transform: tsTransform()
|
|
||||||
}
|
|
||||||
+2
-3
@@ -8,7 +8,7 @@
|
|||||||
"start": "next start",
|
"start": "next start",
|
||||||
"lint": "next lint",
|
"lint": "next lint",
|
||||||
"format": "prettier components/**/*.tsx config/*.js pages/**/*.tsx {types,utils}/**/*.ts --write",
|
"format": "prettier components/**/*.tsx config/*.js pages/**/*.tsx {types,utils}/**/*.ts --write",
|
||||||
"extract": "i18next-scanner"
|
"extract": "i18next"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fortawesome/fontawesome-svg-core": "^1.2.35",
|
"@fortawesome/fontawesome-svg-core": "^1.2.35",
|
||||||
@@ -62,8 +62,7 @@
|
|||||||
"eslint": "8.8.0",
|
"eslint": "8.8.0",
|
||||||
"eslint-config-next": "12.0.10",
|
"eslint-config-next": "12.0.10",
|
||||||
"eslint-config-prettier": "^8.3.0",
|
"eslint-config-prettier": "^8.3.0",
|
||||||
"i18next-scanner": "^3.1.0",
|
"i18next-parser": "^5.4.0",
|
||||||
"i18next-scanner-typescript": "^1.0.6",
|
|
||||||
"postcss": "^8.4.5",
|
"postcss": "^8.4.5",
|
||||||
"prettier": "^2.5.1",
|
"prettier": "^2.5.1",
|
||||||
"prettier-plugin-tailwindcss": "^0.1.4",
|
"prettier-plugin-tailwindcss": "^0.1.4",
|
||||||
|
|||||||
Generated
+351
-150
@@ -26,8 +26,7 @@ specifiers:
|
|||||||
eslint: 8.8.0
|
eslint: 8.8.0
|
||||||
eslint-config-next: 12.0.10
|
eslint-config-next: 12.0.10
|
||||||
eslint-config-prettier: ^8.3.0
|
eslint-config-prettier: ^8.3.0
|
||||||
i18next-scanner: ^3.1.0
|
i18next-parser: ^5.4.0
|
||||||
i18next-scanner-typescript: ^1.0.6
|
|
||||||
ioredis: ^4.28.2
|
ioredis: ^4.28.2
|
||||||
jszip: ^3.7.1
|
jszip: ^3.7.1
|
||||||
next: ^12.0.10
|
next: ^12.0.10
|
||||||
@@ -110,8 +109,7 @@ devDependencies:
|
|||||||
eslint: 8.8.0
|
eslint: 8.8.0
|
||||||
eslint-config-next: 12.0.10_9534215cc73b6f260bf33f1b86e3ae0e
|
eslint-config-next: 12.0.10_9534215cc73b6f260bf33f1b86e3ae0e
|
||||||
eslint-config-prettier: 8.3.0_eslint@8.8.0
|
eslint-config-prettier: 8.3.0_eslint@8.8.0
|
||||||
i18next-scanner: 3.1.0
|
i18next-parser: 5.4.0
|
||||||
i18next-scanner-typescript: 1.0.6
|
|
||||||
postcss: 8.4.6
|
postcss: 8.4.6
|
||||||
prettier: 2.5.1
|
prettier: 2.5.1
|
||||||
prettier-plugin-tailwindcss: 0.1.4_prettier@2.5.1
|
prettier-plugin-tailwindcss: 0.1.4_prettier@2.5.1
|
||||||
@@ -455,6 +453,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA==}
|
resolution: {integrity: sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA==}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/@types/minimatch/3.0.5:
|
||||||
|
resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/@types/ms/0.7.31:
|
/@types/ms/0.7.31:
|
||||||
resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==}
|
resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==}
|
||||||
dev: false
|
dev: false
|
||||||
@@ -515,6 +517,10 @@ packages:
|
|||||||
/@types/scheduler/0.16.2:
|
/@types/scheduler/0.16.2:
|
||||||
resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==}
|
resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==}
|
||||||
|
|
||||||
|
/@types/symlink-or-copy/1.2.0:
|
||||||
|
resolution: {integrity: sha512-Lja2xYuuf2B3knEsga8ShbOdsfNOtzT73GyJmZyY7eGl2+ajOqrs8yM5ze0fsSoYwvA6bw7/Qr7OZ7PEEmYwWg==}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/@types/unist/2.0.6:
|
/@types/unist/2.0.6:
|
||||||
resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==}
|
resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==}
|
||||||
dev: false
|
dev: false
|
||||||
@@ -586,24 +592,6 @@ packages:
|
|||||||
engines: {node: '>=10.0.0'}
|
engines: {node: '>=10.0.0'}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/acorn-class-fields/0.3.7_acorn@8.7.0:
|
|
||||||
resolution: {integrity: sha512-jdUWSFce0fuADUljmExz4TWpPkxmRW/ZCPRqeeUzbGf0vFUcpQYbyq52l75qGd0oSwwtAepeL6hgb/naRgvcKQ==}
|
|
||||||
engines: {node: '>=4.8.2'}
|
|
||||||
peerDependencies:
|
|
||||||
acorn: ^6 || ^7 || ^8
|
|
||||||
dependencies:
|
|
||||||
acorn: 8.7.0
|
|
||||||
acorn-private-class-elements: 0.2.7_acorn@8.7.0
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/acorn-dynamic-import/4.0.0_acorn@8.7.0:
|
|
||||||
resolution: {integrity: sha512-d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw==}
|
|
||||||
peerDependencies:
|
|
||||||
acorn: ^6.0.0
|
|
||||||
dependencies:
|
|
||||||
acorn: 8.7.0
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/acorn-jsx/5.3.2_acorn@8.7.0:
|
/acorn-jsx/5.3.2_acorn@8.7.0:
|
||||||
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
|
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -620,57 +608,11 @@ packages:
|
|||||||
xtend: 4.0.2
|
xtend: 4.0.2
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/acorn-private-class-elements/0.2.7_acorn@8.7.0:
|
|
||||||
resolution: {integrity: sha512-+GZH2wOKNZOBI4OOPmzpo4cs6mW297sn6fgIk1dUI08jGjhAaEwvC39mN2gJAg2lmAQJ1rBkFqKWonL3Zz6PVA==}
|
|
||||||
engines: {node: '>=4.8.2'}
|
|
||||||
peerDependencies:
|
|
||||||
acorn: ^6.1.0 || ^7 || ^8
|
|
||||||
dependencies:
|
|
||||||
acorn: 8.7.0
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/acorn-private-methods/0.3.3_acorn@8.7.0:
|
|
||||||
resolution: {integrity: sha512-46oeEol3YFvLSah5m9hGMlNpxDBCEkdceJgf01AjqKYTK9r6HexKs2rgSbLK81pYjZZMonhftuUReGMlbbv05w==}
|
|
||||||
engines: {node: '>=4.8.2'}
|
|
||||||
peerDependencies:
|
|
||||||
acorn: ^6 || ^7 || ^8
|
|
||||||
dependencies:
|
|
||||||
acorn: 8.7.0
|
|
||||||
acorn-private-class-elements: 0.2.7_acorn@8.7.0
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/acorn-stage3/4.0.0_acorn@8.7.0:
|
|
||||||
resolution: {integrity: sha512-BR+LaADtA6GTB5prkNqWmlmCLYmkyW0whvSxdHhbupTaro2qBJ95fJDEiRLPUmiACGHPaYyeH9xmNJWdGfXRQw==}
|
|
||||||
engines: {node: '>=4.8.2'}
|
|
||||||
peerDependencies:
|
|
||||||
acorn: ^7.4 || ^8
|
|
||||||
dependencies:
|
|
||||||
acorn: 8.7.0
|
|
||||||
acorn-class-fields: 0.3.7_acorn@8.7.0
|
|
||||||
acorn-private-methods: 0.3.3_acorn@8.7.0
|
|
||||||
acorn-static-class-features: 0.2.4_acorn@8.7.0
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/acorn-static-class-features/0.2.4_acorn@8.7.0:
|
|
||||||
resolution: {integrity: sha512-5X4mpYq5J3pdndLmIB0+WtFd/mKWnNYpuTlTzj32wUu/PMmEGOiayQ5UrqgwdBNiaZBtDDh5kddpP7Yg2QaQYA==}
|
|
||||||
engines: {node: '>=4.8.2'}
|
|
||||||
peerDependencies:
|
|
||||||
acorn: ^6.1.0 || ^7 || ^8
|
|
||||||
dependencies:
|
|
||||||
acorn: 8.7.0
|
|
||||||
acorn-private-class-elements: 0.2.7_acorn@8.7.0
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/acorn-walk/7.2.0:
|
/acorn-walk/7.2.0:
|
||||||
resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
|
resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
|
||||||
engines: {node: '>=0.4.0'}
|
engines: {node: '>=0.4.0'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/acorn-walk/8.2.0:
|
|
||||||
resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
|
|
||||||
engines: {node: '>=0.4.0'}
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/acorn/7.4.1:
|
/acorn/7.4.1:
|
||||||
resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
|
resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
|
||||||
engines: {node: '>=0.4.0'}
|
engines: {node: '>=0.4.0'}
|
||||||
@@ -859,6 +801,10 @@ packages:
|
|||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/boolbase/1.0.0:
|
||||||
|
resolution: {integrity: sha1-aN/1++YMUes3cl6p4+0xDcwed24=}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/brace-expansion/1.1.11:
|
/brace-expansion/1.1.11:
|
||||||
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
|
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -873,6 +819,37 @@ packages:
|
|||||||
fill-range: 7.0.1
|
fill-range: 7.0.1
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/broccoli-node-api/1.7.0:
|
||||||
|
resolution: {integrity: sha512-QIqLSVJWJUVOhclmkmypJJH9u9s/aWH4+FH6Q6Ju5l+Io4dtwqdPUNmDfw40o6sxhbZHhqGujDJuHTML1wG8Yw==}
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/broccoli-node-info/2.2.0:
|
||||||
|
resolution: {integrity: sha512-VabSGRpKIzpmC+r+tJueCE5h8k6vON7EIMMWu6d/FyPdtijwLQ7QvzShEw+m3mHoDzUaj/kiZsDYrS8X2adsBg==}
|
||||||
|
engines: {node: 8.* || >= 10.*}
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/broccoli-output-wrapper/3.2.5:
|
||||||
|
resolution: {integrity: sha512-bQAtwjSrF4Nu0CK0JOy5OZqw9t5U0zzv2555EA/cF8/a8SLDTIetk9UgrtMVw7qKLKdSpOZ2liZNeZZDaKgayw==}
|
||||||
|
engines: {node: 10.* || >= 12.*}
|
||||||
|
dependencies:
|
||||||
|
fs-extra: 8.1.0
|
||||||
|
heimdalljs-logger: 0.1.10
|
||||||
|
symlink-or-copy: 1.3.1
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/broccoli-plugin/4.0.7:
|
||||||
|
resolution: {integrity: sha512-a4zUsWtA1uns1K7p9rExYVYG99rdKeGRymW0qOCNkvDPHQxVi3yVyJHhQbM3EZwdt2E0mnhr5e0c/bPpJ7p3Wg==}
|
||||||
|
engines: {node: 10.* || >= 12.*}
|
||||||
|
dependencies:
|
||||||
|
broccoli-node-api: 1.7.0
|
||||||
|
broccoli-output-wrapper: 3.2.5
|
||||||
|
fs-merger: 3.2.1
|
||||||
|
promise-map-series: 0.3.0
|
||||||
|
quick-temp: 0.1.8
|
||||||
|
rimraf: 3.0.2
|
||||||
|
symlink-or-copy: 1.3.1
|
||||||
|
dev: true
|
||||||
|
|
||||||
/browserslist/4.19.1:
|
/browserslist/4.19.1:
|
||||||
resolution: {integrity: sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==}
|
resolution: {integrity: sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==}
|
||||||
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
||||||
@@ -890,6 +867,10 @@ packages:
|
|||||||
engines: {node: '>=0.4.0'}
|
engines: {node: '>=0.4.0'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/buffer-from/1.1.2:
|
||||||
|
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/call-bind/1.0.2:
|
/call-bind/1.0.2:
|
||||||
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
|
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -935,6 +916,29 @@ packages:
|
|||||||
resolution: {integrity: sha512-OzmutCf2Kmc+6DrFrrPS8/tDh2+DpnrfzdICHWhcVC9eOd0N1PXmQEE1a8iM4IziIAG+8tmTq3K+oo0ubH6RRQ==}
|
resolution: {integrity: sha512-OzmutCf2Kmc+6DrFrrPS8/tDh2+DpnrfzdICHWhcVC9eOd0N1PXmQEE1a8iM4IziIAG+8tmTq3K+oo0ubH6RRQ==}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/cheerio-select/1.5.0:
|
||||||
|
resolution: {integrity: sha512-qocaHPv5ypefh6YNxvnbABM07KMxExbtbfuJoIie3iZXX1ERwYmJcIiRrr9H05ucQP1k28dav8rpdDgjQd8drg==}
|
||||||
|
dependencies:
|
||||||
|
css-select: 4.2.1
|
||||||
|
css-what: 5.1.0
|
||||||
|
domelementtype: 2.2.0
|
||||||
|
domhandler: 4.3.0
|
||||||
|
domutils: 2.8.0
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/cheerio/1.0.0-rc.10:
|
||||||
|
resolution: {integrity: sha512-g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw==}
|
||||||
|
engines: {node: '>= 6'}
|
||||||
|
dependencies:
|
||||||
|
cheerio-select: 1.5.0
|
||||||
|
dom-serializer: 1.3.2
|
||||||
|
domhandler: 4.3.0
|
||||||
|
htmlparser2: 6.1.0
|
||||||
|
parse5: 6.0.1
|
||||||
|
parse5-htmlparser2-tree-adapter: 6.0.1
|
||||||
|
tslib: 2.3.1
|
||||||
|
dev: true
|
||||||
|
|
||||||
/chokidar/3.5.3:
|
/chokidar/3.5.3:
|
||||||
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
|
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
|
||||||
engines: {node: '>= 8.10.0'}
|
engines: {node: '>= 8.10.0'}
|
||||||
@@ -959,15 +963,6 @@ packages:
|
|||||||
engines: {node: '>= 0.10'}
|
engines: {node: '>= 0.10'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/clone-deep/4.0.1:
|
|
||||||
resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
|
|
||||||
engines: {node: '>=6'}
|
|
||||||
dependencies:
|
|
||||||
is-plain-object: 2.0.4
|
|
||||||
kind-of: 6.0.3
|
|
||||||
shallow-clone: 3.0.1
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/clone-stats/1.0.0:
|
/clone-stats/1.0.0:
|
||||||
resolution: {integrity: sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=}
|
resolution: {integrity: sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=}
|
||||||
dev: true
|
dev: true
|
||||||
@@ -1016,24 +1011,33 @@ packages:
|
|||||||
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/colors/1.4.0:
|
||||||
|
resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==}
|
||||||
|
engines: {node: '>=0.1.90'}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/comma-separated-tokens/2.0.2:
|
/comma-separated-tokens/2.0.2:
|
||||||
resolution: {integrity: sha512-G5yTt3KQN4Yn7Yk4ed73hlZ1evrFKXeUW3086p3PRFNp7m2vIjI6Pg+Kgb+oyzhd9F2qdcoj67+y3SdxL5XWsg==}
|
resolution: {integrity: sha512-G5yTt3KQN4Yn7Yk4ed73hlZ1evrFKXeUW3086p3PRFNp7m2vIjI6Pg+Kgb+oyzhd9F2qdcoj67+y3SdxL5XWsg==}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/commander/6.2.1:
|
|
||||||
resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==}
|
|
||||||
engines: {node: '>= 6'}
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/commander/8.3.0:
|
/commander/8.3.0:
|
||||||
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
|
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
|
||||||
engines: {node: '>= 12'}
|
engines: {node: '>= 12'}
|
||||||
dev: false
|
|
||||||
|
|
||||||
/concat-map/0.0.1:
|
/concat-map/0.0.1:
|
||||||
resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
|
resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/concat-stream/2.0.0:
|
||||||
|
resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==}
|
||||||
|
engines: {'0': node >= 6.0}
|
||||||
|
dependencies:
|
||||||
|
buffer-from: 1.1.2
|
||||||
|
inherits: 2.0.4
|
||||||
|
readable-stream: 3.6.0
|
||||||
|
typedarray: 0.0.6
|
||||||
|
dev: true
|
||||||
|
|
||||||
/convert-source-map/1.8.0:
|
/convert-source-map/1.8.0:
|
||||||
resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==}
|
resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -1091,6 +1095,21 @@ packages:
|
|||||||
resolution: {integrity: sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==}
|
resolution: {integrity: sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/css-select/4.2.1:
|
||||||
|
resolution: {integrity: sha512-/aUslKhzkTNCQUB2qTX84lVmfia9NyjP3WpDGtj/WxhwBzWBYUV3DgUpurHTme8UTPcPlAD1DJ+b0nN/t50zDQ==}
|
||||||
|
dependencies:
|
||||||
|
boolbase: 1.0.0
|
||||||
|
css-what: 5.1.0
|
||||||
|
domhandler: 4.3.0
|
||||||
|
domutils: 2.8.0
|
||||||
|
nth-check: 2.0.1
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/css-what/5.1.0:
|
||||||
|
resolution: {integrity: sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==}
|
||||||
|
engines: {node: '>= 6'}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/cssesc/3.0.0:
|
/cssesc/3.0.0:
|
||||||
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
|
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
|
||||||
engines: {node: '>=4'}
|
engines: {node: '>=4'}
|
||||||
@@ -1111,6 +1130,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
|
resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/de-indent/1.0.2:
|
||||||
|
resolution: {integrity: sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0=}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/debounce-promise/3.1.2:
|
/debounce-promise/3.1.2:
|
||||||
resolution: {integrity: sha512-rZHcgBkbYavBeD9ej6sP56XfG53d51CD4dnaw989YX/nZ/ZJfgRx/9ePKmTNiUiyQvh4mtrMoS3OAWW+yoYtpg==}
|
resolution: {integrity: sha512-rZHcgBkbYavBeD9ej6sP56XfG53d51CD4dnaw989YX/nZ/ZJfgRx/9ePKmTNiUiyQvh4mtrMoS3OAWW+yoYtpg==}
|
||||||
dev: false
|
dev: false
|
||||||
@@ -1154,11 +1177,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
|
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/deepmerge/4.2.2:
|
|
||||||
resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==}
|
|
||||||
engines: {node: '>=0.10.0'}
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/define-properties/1.1.3:
|
/define-properties/1.1.3:
|
||||||
resolution: {integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==}
|
resolution: {integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
@@ -1224,6 +1242,33 @@ packages:
|
|||||||
esutils: 2.0.3
|
esutils: 2.0.3
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/dom-serializer/1.3.2:
|
||||||
|
resolution: {integrity: sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==}
|
||||||
|
dependencies:
|
||||||
|
domelementtype: 2.2.0
|
||||||
|
domhandler: 4.3.0
|
||||||
|
entities: 2.2.0
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/domelementtype/2.2.0:
|
||||||
|
resolution: {integrity: sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==}
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/domhandler/4.3.0:
|
||||||
|
resolution: {integrity: sha512-fC0aXNQXqKSFTr2wDNZDhsEYjCiYsDWl3D01kwt25hm1YIPyDGHvvi3rw+PLqHAl/m71MaiF7d5zvBr0p5UB2g==}
|
||||||
|
engines: {node: '>= 4'}
|
||||||
|
dependencies:
|
||||||
|
domelementtype: 2.2.0
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/domutils/2.8.0:
|
||||||
|
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
|
||||||
|
dependencies:
|
||||||
|
dom-serializer: 1.3.2
|
||||||
|
domelementtype: 2.2.0
|
||||||
|
domhandler: 4.3.0
|
||||||
|
dev: true
|
||||||
|
|
||||||
/dplayer/1.26.0:
|
/dplayer/1.26.0:
|
||||||
resolution: {integrity: sha512-uOE0w/WdlX7N9d0ppIEcAYrcnUjY52TMX+MBL4lj9Mj+JMljVuaEc5w88HkZp5Q11VqvN/jxnM8ktx2Dr7/MgA==}
|
resolution: {integrity: sha512-uOE0w/WdlX7N9d0ppIEcAYrcnUjY52TMX+MBL4lj9Mj+JMljVuaEc5w88HkZp5Q11VqvN/jxnM8ktx2Dr7/MgA==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -1259,8 +1304,12 @@ packages:
|
|||||||
once: 1.4.0
|
once: 1.4.0
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/ensure-array/1.0.0:
|
/ensure-posix-path/1.1.1:
|
||||||
resolution: {integrity: sha512-A+3Ntl5WS+GjDnHtC67dKIjw+IoGoeFdNvjn3ZfKEmZgWUz0nxBPE4W52QMCbGZsat0VwWskD5T6AEpe3T2d1g==}
|
resolution: {integrity: sha512-VWU0/zXzVbeJNXvME/5EmLuEj2TauvoaTz6aFYK1Z92JCBlDlZ3Gu0tuGR42kpW1754ywTs+QB0g5TP0oj9Zaw==}
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/entities/2.2.0:
|
||||||
|
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/eol/0.9.1:
|
/eol/0.9.1:
|
||||||
@@ -1589,12 +1638,6 @@ packages:
|
|||||||
eslint-visitor-keys: 3.2.0
|
eslint-visitor-keys: 3.2.0
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/esprima-next/5.8.1:
|
|
||||||
resolution: {integrity: sha512-jPuleZ9j065A9xGKreFh9YSgPlbL9/miG/l4KslkwEb7Ilwl5Ct7BmDkSTHA0rW0qnqLx+hsZWIB66s1XaMAyA==}
|
|
||||||
engines: {node: '>=12'}
|
|
||||||
hasBin: true
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/esquery/1.4.0:
|
/esquery/1.4.0:
|
||||||
resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==}
|
resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==}
|
||||||
engines: {node: '>=0.10'}
|
engines: {node: '>=0.10'}
|
||||||
@@ -1725,6 +1768,34 @@ packages:
|
|||||||
resolution: {integrity: sha512-o2RiJQ6DZaR/5+Si0qJUIy637QMRudSi9kU/FFzx9EZazrIdnBgpU+3sEWCxAVhH2RtxW2Oz+T4p2o8uOPVcgA==}
|
resolution: {integrity: sha512-o2RiJQ6DZaR/5+Si0qJUIy637QMRudSi9kU/FFzx9EZazrIdnBgpU+3sEWCxAVhH2RtxW2Oz+T4p2o8uOPVcgA==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/fs-extra/10.0.0:
|
||||||
|
resolution: {integrity: sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==}
|
||||||
|
engines: {node: '>=12'}
|
||||||
|
dependencies:
|
||||||
|
graceful-fs: 4.2.9
|
||||||
|
jsonfile: 6.1.0
|
||||||
|
universalify: 2.0.0
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/fs-extra/8.1.0:
|
||||||
|
resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
|
||||||
|
engines: {node: '>=6 <7 || >=8'}
|
||||||
|
dependencies:
|
||||||
|
graceful-fs: 4.2.9
|
||||||
|
jsonfile: 4.0.0
|
||||||
|
universalify: 0.1.2
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/fs-merger/3.2.1:
|
||||||
|
resolution: {integrity: sha512-AN6sX12liy0JE7C2evclwoo0aCG3PFulLjrTLsJpWh/2mM+DinhpSGqYLbHBBbIW1PLRNcFhJG8Axtz8mQW3ug==}
|
||||||
|
dependencies:
|
||||||
|
broccoli-node-api: 1.7.0
|
||||||
|
broccoli-node-info: 2.2.0
|
||||||
|
fs-extra: 8.1.0
|
||||||
|
fs-tree-diff: 2.0.1
|
||||||
|
walk-sync: 2.2.0
|
||||||
|
dev: true
|
||||||
|
|
||||||
/fs-mkdirp-stream/1.0.0:
|
/fs-mkdirp-stream/1.0.0:
|
||||||
resolution: {integrity: sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes=}
|
resolution: {integrity: sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes=}
|
||||||
engines: {node: '>= 0.10'}
|
engines: {node: '>= 0.10'}
|
||||||
@@ -1733,6 +1804,17 @@ packages:
|
|||||||
through2: 2.0.5
|
through2: 2.0.5
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/fs-tree-diff/2.0.1:
|
||||||
|
resolution: {integrity: sha512-x+CfAZ/lJHQqwlD64pYM5QxWjzWhSjroaVsr8PW831zOApL55qPibed0c+xebaLWVr2BnHFoHdrwOv8pzt8R5A==}
|
||||||
|
engines: {node: 6.* || 8.* || >= 10.*}
|
||||||
|
dependencies:
|
||||||
|
'@types/symlink-or-copy': 1.2.0
|
||||||
|
heimdalljs-logger: 0.1.10
|
||||||
|
object-assign: 4.1.1
|
||||||
|
path-posix: 1.0.0
|
||||||
|
symlink-or-copy: 1.3.1
|
||||||
|
dev: true
|
||||||
|
|
||||||
/fs.realpath/1.0.0:
|
/fs.realpath/1.0.0:
|
||||||
resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=}
|
resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=}
|
||||||
dev: true
|
dev: true
|
||||||
@@ -1983,6 +2065,24 @@ packages:
|
|||||||
space-separated-tokens: 2.0.1
|
space-separated-tokens: 2.0.1
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/he/1.2.0:
|
||||||
|
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
|
||||||
|
hasBin: true
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/heimdalljs-logger/0.1.10:
|
||||||
|
resolution: {integrity: sha512-pO++cJbhIufVI/fmB/u2Yty3KJD0TqNPecehFae0/eps0hkZ3b4Zc/PezUMOpYuHFQbA7FxHZxa305EhmjLj4g==}
|
||||||
|
dependencies:
|
||||||
|
debug: 2.6.9
|
||||||
|
heimdalljs: 0.2.6
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/heimdalljs/0.2.6:
|
||||||
|
resolution: {integrity: sha512-o9bd30+5vLBvBtzCPwwGqpry2+n0Hi6H1+qwt6y+0kwRHGGF8TFIhJPmnuM0xO97zaKrDZMwO/V56fAnn8m/tA==}
|
||||||
|
dependencies:
|
||||||
|
rsvp: 3.2.1
|
||||||
|
dev: true
|
||||||
|
|
||||||
/hoist-non-react-statics/3.3.2:
|
/hoist-non-react-statics/3.3.2:
|
||||||
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
|
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -2007,41 +2107,42 @@ packages:
|
|||||||
resolution: {integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==}
|
resolution: {integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/htmlparser2/6.1.0:
|
||||||
|
resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
|
||||||
|
dependencies:
|
||||||
|
domelementtype: 2.2.0
|
||||||
|
domhandler: 4.3.0
|
||||||
|
domutils: 2.8.0
|
||||||
|
entities: 2.2.0
|
||||||
|
dev: true
|
||||||
|
|
||||||
/i18next-fs-backend/1.1.4:
|
/i18next-fs-backend/1.1.4:
|
||||||
resolution: {integrity: sha512-/MfAGMP0jHonV966uFf9PkWWuDjPYLIcsipnSO3NxpNtAgRUKLTwvm85fEmsF6hGeu0zbZiCQ3W74jwO6K9uXA==}
|
resolution: {integrity: sha512-/MfAGMP0jHonV966uFf9PkWWuDjPYLIcsipnSO3NxpNtAgRUKLTwvm85fEmsF6hGeu0zbZiCQ3W74jwO6K9uXA==}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/i18next-scanner-typescript/1.0.6:
|
/i18next-parser/5.4.0:
|
||||||
resolution: {integrity: sha512-v6kULnsv32OlFM9pnWTH+wNtRXf5owmFUNBYcX78jbZxQBFnTCUo3w99JjnxuzuXA9ch4UKNQBnt2P/o94eyeQ==}
|
resolution: {integrity: sha512-AkMOy3NW09tnB+4CAVzHVWxhoab8q1L6E3aIugWeTZqbUVYTjb6dtW1AhiiUd4nLMOj29LaaVCkyqOhrTezp7Q==}
|
||||||
dependencies:
|
engines: {node: '>=12', npm: '>=6', yarn: '>=1'}
|
||||||
typescript: 3.9.10
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/i18next-scanner/3.1.0:
|
|
||||||
resolution: {integrity: sha512-dHLXUJIiF1CYJNslCkJFDYJySk5fg+dzdg9O73XXqHcdZwJ2947SWusqq8HdNFB7LpkBi8oTG6TWLZPmqbAh8Q==}
|
|
||||||
engines: {node: '>=12'}
|
|
||||||
hasBin: true
|
hasBin: true
|
||||||
dependencies:
|
dependencies:
|
||||||
acorn: 8.7.0
|
'@babel/runtime': 7.16.7
|
||||||
acorn-dynamic-import: 4.0.0_acorn@8.7.0
|
broccoli-plugin: 4.0.7
|
||||||
acorn-jsx: 5.3.2_acorn@8.7.0
|
cheerio: 1.0.0-rc.10
|
||||||
acorn-stage3: 4.0.0_acorn@8.7.0
|
colors: 1.4.0
|
||||||
acorn-walk: 8.2.0
|
commander: 8.3.0
|
||||||
chalk: 4.1.2
|
concat-stream: 2.0.0
|
||||||
clone-deep: 4.0.1
|
|
||||||
commander: 6.2.1
|
|
||||||
deepmerge: 4.2.2
|
|
||||||
ensure-array: 1.0.0
|
|
||||||
eol: 0.9.1
|
eol: 0.9.1
|
||||||
esprima-next: 5.8.1
|
fs-extra: 10.0.0
|
||||||
gulp-sort: 2.0.0
|
gulp-sort: 2.0.0
|
||||||
i18next: 21.6.10
|
i18next: 21.6.10
|
||||||
lodash: 4.17.21
|
js-yaml: 4.1.0
|
||||||
parse5: 6.0.1
|
rsvp: 4.8.5
|
||||||
sortobject: 4.16.0
|
sort-keys: 4.2.0
|
||||||
through2: 4.0.2
|
through2: 4.0.2
|
||||||
|
typescript: 4.5.5
|
||||||
vinyl: 2.2.1
|
vinyl: 2.2.1
|
||||||
vinyl-fs: 3.0.3
|
vinyl-fs: 3.0.3
|
||||||
|
vue-template-compiler: 2.6.14
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/i18next/21.6.10:
|
/i18next/21.6.10:
|
||||||
@@ -2219,18 +2320,16 @@ packages:
|
|||||||
engines: {node: '>=0.12.0'}
|
engines: {node: '>=0.12.0'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/is-plain-obj/2.1.0:
|
||||||
|
resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
|
||||||
|
engines: {node: '>=8'}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/is-plain-obj/4.0.0:
|
/is-plain-obj/4.0.0:
|
||||||
resolution: {integrity: sha512-NXRbBtUdBioI73y/HmOhogw/U5msYPC9DAtGkJXeFcFWSFZw0mCUsPxk/snTuJHzNKA8kLBK4rH97RMB1BfCXw==}
|
resolution: {integrity: sha512-NXRbBtUdBioI73y/HmOhogw/U5msYPC9DAtGkJXeFcFWSFZw0mCUsPxk/snTuJHzNKA8kLBK4rH97RMB1BfCXw==}
|
||||||
engines: {node: '>=12'}
|
engines: {node: '>=12'}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/is-plain-object/2.0.4:
|
|
||||||
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
|
|
||||||
engines: {node: '>=0.10.0'}
|
|
||||||
dependencies:
|
|
||||||
isobject: 3.0.1
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/is-regex/1.1.4:
|
/is-regex/1.1.4:
|
||||||
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
|
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
@@ -2298,11 +2397,6 @@ packages:
|
|||||||
resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=}
|
resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/isobject/3.0.1:
|
|
||||||
resolution: {integrity: sha1-TkMekrEalzFjaqH5yNHMvP2reN8=}
|
|
||||||
engines: {node: '>=0.10.0'}
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/js-tokens/4.0.0:
|
/js-tokens/4.0.0:
|
||||||
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
||||||
|
|
||||||
@@ -2332,6 +2426,20 @@ packages:
|
|||||||
minimist: 1.2.5
|
minimist: 1.2.5
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/jsonfile/4.0.0:
|
||||||
|
resolution: {integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=}
|
||||||
|
optionalDependencies:
|
||||||
|
graceful-fs: 4.2.9
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/jsonfile/6.1.0:
|
||||||
|
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
|
||||||
|
dependencies:
|
||||||
|
universalify: 2.0.0
|
||||||
|
optionalDependencies:
|
||||||
|
graceful-fs: 4.2.9
|
||||||
|
dev: true
|
||||||
|
|
||||||
/jsx-ast-utils/3.2.1:
|
/jsx-ast-utils/3.2.1:
|
||||||
resolution: {integrity: sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA==}
|
resolution: {integrity: sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA==}
|
||||||
engines: {node: '>=4.0'}
|
engines: {node: '>=4.0'}
|
||||||
@@ -2363,11 +2471,6 @@ packages:
|
|||||||
commander: 8.3.0
|
commander: 8.3.0
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/kind-of/6.0.3:
|
|
||||||
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
|
|
||||||
engines: {node: '>=0.10.0'}
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/kleur/4.1.4:
|
/kleur/4.1.4:
|
||||||
resolution: {integrity: sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==}
|
resolution: {integrity: sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==}
|
||||||
engines: {node: '>=6'}
|
engines: {node: '>=6'}
|
||||||
@@ -2458,6 +2561,7 @@ packages:
|
|||||||
|
|
||||||
/lodash/4.17.21:
|
/lodash/4.17.21:
|
||||||
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
|
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/longest-streak/3.0.1:
|
/longest-streak/3.0.1:
|
||||||
resolution: {integrity: sha512-cHlYSUpL2s7Fb3394mYxwTYj8niTaNHUCLr0qdiCXQfSjfuA7CKofpX2uSwEfFDQ0EB7JcnMnm+GjbqqoinYYg==}
|
resolution: {integrity: sha512-cHlYSUpL2s7Fb3394mYxwTYj8niTaNHUCLr0qdiCXQfSjfuA7CKofpX2uSwEfFDQ0EB7JcnMnm+GjbqqoinYYg==}
|
||||||
@@ -2484,6 +2588,14 @@ packages:
|
|||||||
resolution: {integrity: sha512-Ahs4oeG90tbdPWwAJkAAoHg2lRR8lAs9mZXETNPO9hYg3AkjUJBKi1NQ4aaIQZVGrig7c/3NUV1jANl8rFTeMg==}
|
resolution: {integrity: sha512-Ahs4oeG90tbdPWwAJkAAoHg2lRR8lAs9mZXETNPO9hYg3AkjUJBKi1NQ4aaIQZVGrig7c/3NUV1jANl8rFTeMg==}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/matcher-collection/2.0.1:
|
||||||
|
resolution: {integrity: sha512-daE62nS2ZQsDg9raM0IlZzLmI2u+7ZapXBwdoeBUKAYERPDDIc0qNqA8E0Rp2D+gspKR7BgIFP52GeujaGXWeQ==}
|
||||||
|
engines: {node: 6.* || 8.* || >= 10.*}
|
||||||
|
dependencies:
|
||||||
|
'@types/minimatch': 3.0.5
|
||||||
|
minimatch: 3.0.4
|
||||||
|
dev: true
|
||||||
|
|
||||||
/mdast-util-definitions/5.1.0:
|
/mdast-util-definitions/5.1.0:
|
||||||
resolution: {integrity: sha512-5hcR7FL2EuZ4q6lLMUK5w4lHT2H3vqL9quPvYZ/Ku5iifrirfMHiGdhxdXMUbUkDmz5I+TYMd7nbaxUhbQkfpQ==}
|
resolution: {integrity: sha512-5hcR7FL2EuZ4q6lLMUK5w4lHT2H3vqL9quPvYZ/Ku5iifrirfMHiGdhxdXMUbUkDmz5I+TYMd7nbaxUhbQkfpQ==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -2893,6 +3005,11 @@ packages:
|
|||||||
resolution: {integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==}
|
resolution: {integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/mktemp/0.4.0:
|
||||||
|
resolution: {integrity: sha1-bQUVYRyKjITkhKogABKbmOmB/ws=}
|
||||||
|
engines: {node: '>0.9'}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/mri/1.2.0:
|
/mri/1.2.0:
|
||||||
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
|
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
|
||||||
engines: {node: '>=4'}
|
engines: {node: '>=4'}
|
||||||
@@ -3028,6 +3145,12 @@ packages:
|
|||||||
resolution: {integrity: sha1-y480xTIT2JVyP8urkH6UIq28r7E=}
|
resolution: {integrity: sha1-y480xTIT2JVyP8urkH6UIq28r7E=}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/nth-check/2.0.1:
|
||||||
|
resolution: {integrity: sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==}
|
||||||
|
dependencies:
|
||||||
|
boolbase: 1.0.0
|
||||||
|
dev: true
|
||||||
|
|
||||||
/object-assign/4.1.1:
|
/object-assign/4.1.1:
|
||||||
resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=}
|
resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
@@ -3163,6 +3286,12 @@ packages:
|
|||||||
lines-and-columns: 1.2.4
|
lines-and-columns: 1.2.4
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/parse5-htmlparser2-tree-adapter/6.0.1:
|
||||||
|
resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==}
|
||||||
|
dependencies:
|
||||||
|
parse5: 6.0.1
|
||||||
|
dev: true
|
||||||
|
|
||||||
/parse5/6.0.1:
|
/parse5/6.0.1:
|
||||||
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
|
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
|
||||||
|
|
||||||
@@ -3189,6 +3318,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
|
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/path-posix/1.0.0:
|
||||||
|
resolution: {integrity: sha1-BrJhE/Vr6rBCVFojv6iAA8ysJg8=}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/path-type/4.0.0:
|
/path-type/4.0.0:
|
||||||
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
|
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
@@ -3314,6 +3447,11 @@ packages:
|
|||||||
/process-nextick-args/2.0.1:
|
/process-nextick-args/2.0.1:
|
||||||
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
|
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
|
||||||
|
|
||||||
|
/promise-map-series/0.3.0:
|
||||||
|
resolution: {integrity: sha512-3npG2NGhTc8BWBolLLf8l/92OxMGaRLbqvIh9wjCHhDXNvk4zsxaTaCpiCunW09qWPrN2zeNSNwRLVBrQQtutA==}
|
||||||
|
engines: {node: 10.* || >= 12.*}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/promise-polyfill/8.1.3:
|
/promise-polyfill/8.1.3:
|
||||||
resolution: {integrity: sha512-MG5r82wBzh7pSKDRa9y+vllNHz3e3d4CNj1PQE4BQYxLme0gKYYBm9YENq+UkEikyZ0XbiGWxYlVw3Rl9O/U8g==}
|
resolution: {integrity: sha512-MG5r82wBzh7pSKDRa9y+vllNHz3e3d4CNj1PQE4BQYxLme0gKYYBm9YENq+UkEikyZ0XbiGWxYlVw3Rl9O/U8g==}
|
||||||
dev: false
|
dev: false
|
||||||
@@ -3358,6 +3496,14 @@ packages:
|
|||||||
engines: {node: '>=10'}
|
engines: {node: '>=10'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/quick-temp/0.1.8:
|
||||||
|
resolution: {integrity: sha1-urAqJCq4+w3XWKPJd2sy+aXZRAg=}
|
||||||
|
dependencies:
|
||||||
|
mktemp: 0.4.0
|
||||||
|
rimraf: 2.7.1
|
||||||
|
underscore.string: 3.3.6
|
||||||
|
dev: true
|
||||||
|
|
||||||
/react-async-hook/4.0.0_react@17.0.2:
|
/react-async-hook/4.0.0_react@17.0.2:
|
||||||
resolution: {integrity: sha512-97lgjFkOcHCTYSrsKBpsXg3iVWM0LnzedB749iP76sb3/8Ouu4nHIkCLEOrQWHVYqrYxjF05NN6GHoXWFkB3Kw==}
|
resolution: {integrity: sha512-97lgjFkOcHCTYSrsKBpsXg3iVWM0LnzedB749iP76sb3/8Ouu4nHIkCLEOrQWHVYqrYxjF05NN6GHoXWFkB3Kw==}
|
||||||
engines: {node: '>=8', npm: '>=5'}
|
engines: {node: '>=8', npm: '>=5'}
|
||||||
@@ -3702,6 +3848,13 @@ packages:
|
|||||||
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
|
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/rimraf/2.7.1:
|
||||||
|
resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
|
||||||
|
hasBin: true
|
||||||
|
dependencies:
|
||||||
|
glob: 7.2.0
|
||||||
|
dev: true
|
||||||
|
|
||||||
/rimraf/3.0.2:
|
/rimraf/3.0.2:
|
||||||
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
|
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
@@ -3709,6 +3862,15 @@ packages:
|
|||||||
glob: 7.2.0
|
glob: 7.2.0
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/rsvp/3.2.1:
|
||||||
|
resolution: {integrity: sha1-B8tKXfJa3Z6Cbrxn3Mn9idsn2Eo=}
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/rsvp/4.8.5:
|
||||||
|
resolution: {integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==}
|
||||||
|
engines: {node: 6.* || >= 7.*}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/run-parallel/1.2.0:
|
/run-parallel/1.2.0:
|
||||||
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
|
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -3750,13 +3912,6 @@ packages:
|
|||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/shallow-clone/3.0.1:
|
|
||||||
resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
|
|
||||||
engines: {node: '>=8'}
|
|
||||||
dependencies:
|
|
||||||
kind-of: 6.0.3
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/shebang-command/2.0.0:
|
/shebang-command/2.0.0:
|
||||||
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
@@ -3782,9 +3937,11 @@ packages:
|
|||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/sortobject/4.16.0:
|
/sort-keys/4.2.0:
|
||||||
resolution: {integrity: sha512-jdcWhqJjxyYxRcXa30qImF3PZea1GpNwdKxUac28T28+GodptH4XihPuRlgCY0hITIEQVnw8DtQ81Fb6fomBaw==}
|
resolution: {integrity: sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==}
|
||||||
engines: {node: '>=10'}
|
engines: {node: '>=8'}
|
||||||
|
dependencies:
|
||||||
|
is-plain-obj: 2.1.0
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/source-map-js/1.0.2:
|
/source-map-js/1.0.2:
|
||||||
@@ -3795,6 +3952,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-ekwEbFp5aqSPKaqeY1PGrlGQxPNaq+Cnx4+bE2D8sciBQrHpbwoBbawqTN2+6jPs9IdWxxiUcN0K2pkczD3zmw==}
|
resolution: {integrity: sha512-ekwEbFp5aqSPKaqeY1PGrlGQxPNaq+Cnx4+bE2D8sciBQrHpbwoBbawqTN2+6jPs9IdWxxiUcN0K2pkczD3zmw==}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/sprintf-js/1.1.2:
|
||||||
|
resolution: {integrity: sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/standard-as-callback/2.1.0:
|
/standard-as-callback/2.1.0:
|
||||||
resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==}
|
resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==}
|
||||||
dev: false
|
dev: false
|
||||||
@@ -3901,6 +4062,10 @@ packages:
|
|||||||
react: 17.0.2
|
react: 17.0.2
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/symlink-or-copy/1.3.1:
|
||||||
|
resolution: {integrity: sha512-0K91MEXFpBUaywiwSSkmKjnGcasG/rVBXFLJz5DrgGabpYD6N+3yZrfD6uUIfpuTu65DZLHi7N8CizHc07BPZA==}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/tailwindcss/3.0.18_833e1018ad0d7954aa80c53675939269:
|
/tailwindcss/3.0.18_833e1018ad0d7954aa80c53675939269:
|
||||||
resolution: {integrity: sha512-ihPTpEyA5ANgZbwKlgrbfnzOp9R5vDHFWmqxB1PT8NwOGCOFVVMl+Ps1cQQ369acaqqf1BEF77roCwK0lvNmTw==}
|
resolution: {integrity: sha512-ihPTpEyA5ANgZbwKlgrbfnzOp9R5vDHFWmqxB1PT8NwOGCOFVVMl+Ps1cQQ369acaqqf1BEF77roCwK0lvNmTw==}
|
||||||
engines: {node: '>=12.13.0'}
|
engines: {node: '>=12.13.0'}
|
||||||
@@ -4002,6 +4167,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
|
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/tslib/2.3.1:
|
||||||
|
resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/tsutils/3.21.0_typescript@4.5.5:
|
/tsutils/3.21.0_typescript@4.5.5:
|
||||||
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
|
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
|
||||||
engines: {node: '>= 6'}
|
engines: {node: '>= 6'}
|
||||||
@@ -4032,10 +4201,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw==}
|
resolution: {integrity: sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw==}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/typescript/3.9.10:
|
/typedarray/0.0.6:
|
||||||
resolution: {integrity: sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==}
|
resolution: {integrity: sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=}
|
||||||
engines: {node: '>=4.2.0'}
|
|
||||||
hasBin: true
|
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/typescript/4.5.5:
|
/typescript/4.5.5:
|
||||||
@@ -4058,6 +4225,13 @@ packages:
|
|||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/underscore.string/3.3.6:
|
||||||
|
resolution: {integrity: sha512-VoC83HWXmCrF6rgkyxS9GHv8W9Q5nhMKho+OadDJGzL2oDYbYEppBaCMH6pFlwLeqj2QS+hhkw2kpXkSdD1JxQ==}
|
||||||
|
dependencies:
|
||||||
|
sprintf-js: 1.1.2
|
||||||
|
util-deprecate: 1.0.2
|
||||||
|
dev: true
|
||||||
|
|
||||||
/unified/10.1.1:
|
/unified/10.1.1:
|
||||||
resolution: {integrity: sha512-v4ky1+6BN9X3pQrOdkFIPWAaeDsHPE1svRDxq7YpTc2plkIqFMwukfqM+l0ewpP9EfwARlt9pPFAeWYhHm8X9w==}
|
resolution: {integrity: sha512-v4ky1+6BN9X3pQrOdkFIPWAaeDsHPE1svRDxq7YpTc2plkIqFMwukfqM+l0ewpP9EfwARlt9pPFAeWYhHm8X9w==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -4145,6 +4319,16 @@ packages:
|
|||||||
unist-util-visit-parents: 5.1.0
|
unist-util-visit-parents: 5.1.0
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/universalify/0.1.2:
|
||||||
|
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
|
||||||
|
engines: {node: '>= 4.0.0'}
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/universalify/2.0.0:
|
||||||
|
resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
|
||||||
|
engines: {node: '>= 10.0.0'}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/uri-js/4.4.1:
|
/uri-js/4.4.1:
|
||||||
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -4281,6 +4465,23 @@ packages:
|
|||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/vue-template-compiler/2.6.14:
|
||||||
|
resolution: {integrity: sha512-ODQS1SyMbjKoO1JBJZojSw6FE4qnh9rIpUZn2EUT86FKizx9uH5z6uXiIrm4/Nb/gwxTi/o17ZDEGWAXHvtC7g==}
|
||||||
|
dependencies:
|
||||||
|
de-indent: 1.0.2
|
||||||
|
he: 1.2.0
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/walk-sync/2.2.0:
|
||||||
|
resolution: {integrity: sha512-IC8sL7aB4/ZgFcGI2T1LczZeFWZ06b3zoHH7jBPyHxOtIIz1jppWHjjEXkOFvFojBVAK9pV7g47xOZ4LW3QLfg==}
|
||||||
|
engines: {node: 8.* || >= 10.*}
|
||||||
|
dependencies:
|
||||||
|
'@types/minimatch': 3.0.5
|
||||||
|
ensure-posix-path: 1.1.1
|
||||||
|
matcher-collection: 2.0.1
|
||||||
|
minimatch: 3.0.4
|
||||||
|
dev: true
|
||||||
|
|
||||||
/web-namespaces/2.0.1:
|
/web-namespaces/2.0.1:
|
||||||
resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==}
|
resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==}
|
||||||
dev: false
|
dev: false
|
||||||
|
|||||||
@@ -1,12 +1,15 @@
|
|||||||
{
|
{
|
||||||
"- showing {{count}} page(s) of {{totalFileNum}} files -": "- showing {{count}} page of {{totalFileNum}} files -",
|
"- showing {{count}} page(s) of {{totalFileNum}} files -——one": "- showing {{count}} page of {{totalFileNum}} files -",
|
||||||
"- showing {{count}} page(s) of {{totalFileNum}} files -_plural": "- showing {{count}} pages of {{totalFileNum}} files -",
|
"- showing {{count}} page(s) of {{totalFileNum}} files -——other": "- showing {{count}} pages of {{totalFileNum}} files -",
|
||||||
|
"{{count}} item(s)——one": "{{count}} item",
|
||||||
|
"{{count}} item(s)——other": "{{count}} items",
|
||||||
"Actions": "Actions",
|
"Actions": "Actions",
|
||||||
"Cancel": "Cancel",
|
"Cancel": "Cancel",
|
||||||
"Cannot preview {{path}}": "Cannot preview {{path}}",
|
"Cannot preview {{path}}": "Cannot preview {{path}}",
|
||||||
"Clear all": "Clear all",
|
"Clear all": "Clear all",
|
||||||
"Clear all tokens?": "Clear all tokens?",
|
"Clear all tokens?": "Clear all tokens?",
|
||||||
"Cleared all tokens": "Cleared all tokens",
|
"Cleared all tokens": "Cleared all tokens",
|
||||||
|
"clearing them means that you will need to re-enter the passwords again.": "clearing them means that you will need to re-enter the passwords again.",
|
||||||
"Copied direct link to clipboard.": "Copied direct link to clipboard.",
|
"Copied direct link to clipboard.": "Copied direct link to clipboard.",
|
||||||
"Copied folder permalink.": "Copied folder permalink.",
|
"Copied folder permalink.": "Copied folder permalink.",
|
||||||
"Copied raw file permalink.": "Copied raw file permalink.",
|
"Copied raw file permalink.": "Copied raw file permalink.",
|
||||||
@@ -19,10 +22,10 @@
|
|||||||
"Download folder": "Download folder",
|
"Download folder": "Download folder",
|
||||||
"Download selected files": "Download selected files",
|
"Download selected files": "Download selected files",
|
||||||
"Download the file directly through OneDrive": "Download the file directly through OneDrive",
|
"Download the file directly through OneDrive": "Download the file directly through OneDrive",
|
||||||
|
"Downloading {{progress}}%": "Downloading {{progress}}%",
|
||||||
"Downloading folder, refresh page to cancel": "Downloading folder, refresh page to cancel",
|
"Downloading folder, refresh page to cancel": "Downloading folder, refresh page to cancel",
|
||||||
"Downloading selected files, refresh page to cancel": "Downloading selected files, refresh page to cancel",
|
"Downloading selected files, refresh page to cancel": "Downloading selected files, refresh page to cancel",
|
||||||
"Downloading selected files...": "Downloading selected files...",
|
"Downloading selected files...": "Downloading selected files...",
|
||||||
"Downloading {{progress}}%": "Downloading {{progress}}%",
|
|
||||||
"Email": "Email",
|
"Email": "Email",
|
||||||
"Enter Password": "Enter Password",
|
"Enter Password": "Enter Password",
|
||||||
"Error: {{message}}": "Error: {{message}}",
|
"Error: {{message}}": "Error: {{message}}",
|
||||||
@@ -42,7 +45,7 @@
|
|||||||
"Name": "Name",
|
"Name": "Name",
|
||||||
"No more files": "No more files",
|
"No more files": "No more files",
|
||||||
"Nothing here.": "Nothing here.",
|
"Nothing here.": "Nothing here.",
|
||||||
"Oops, that's a <1>four-oh-four</1>.": "Oops, that's a <1>four-oh-four</1>.",
|
"Oops, that's a <1>four-oh-four</1>.": "Oops, that's a <1>four-oh-four</1>.",
|
||||||
"Press <2>F12</2> and open devtools for more details, or seek help at <6>onedrive-vercel-index discussions</6>.": "Press <2>F12</2> and open devtools for more details, or seek help at <6>onedrive-vercel-index discussions</6>.",
|
"Press <2>F12</2> and open devtools for more details, or seek help at <6>onedrive-vercel-index discussions</6>.": "Press <2>F12</2> and open devtools for more details, or seek help at <6>onedrive-vercel-index discussions</6>.",
|
||||||
"Search ...": "Search ...",
|
"Search ...": "Search ...",
|
||||||
"Select all files": "Select all files",
|
"Select all files": "Select all files",
|
||||||
@@ -51,8 +54,5 @@
|
|||||||
"Size": "Size",
|
"Size": "Size",
|
||||||
"These tokens are used to authenticate yourself into password protected folders, ": "These tokens are used to authenticate yourself into password protected folders, ",
|
"These tokens are used to authenticate yourself into password protected folders, ": "These tokens are used to authenticate yourself into password protected folders, ",
|
||||||
"This route (the folder itself and the files inside) is password protected. ": "This route (the folder itself and the files inside) is password protected. ",
|
"This route (the folder itself and the files inside) is password protected. ": "This route (the folder itself and the files inside) is password protected. ",
|
||||||
"Weibo": "Weibo",
|
"Weibo": "Weibo"
|
||||||
"clearing them means that you will need to re-enter the passwords again.": "clearing them means that you will need to re-enter the passwords again.",
|
|
||||||
"{{count}} item(s)": "{{count}} item",
|
|
||||||
"{{count}} item(s)_plural": "{{count}} items"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,11 +1,13 @@
|
|||||||
{
|
{
|
||||||
"- showing {{count}} page(s) of {{totalFileNum}} files -": "已显示 {{count}} 页,共 {{totalFileNum}} 个文件",
|
"- showing {{count}} page(s) of {{totalFileNum}} files -——other": "已显示 {{count}} 页,共 {{totalFileNum}} 个文件",
|
||||||
|
"{{count}} item(s)——other": "{{count}} 个项目",
|
||||||
"Actions": "操作",
|
"Actions": "操作",
|
||||||
"Cancel": "取消",
|
"Cancel": "取消",
|
||||||
"Cannot preview {{path}}": "无法预览 {{path}}",
|
"Cannot preview {{path}}": "无法预览 {{path}}",
|
||||||
"Clear all": "清楚所有密钥",
|
"Clear all": "清楚所有密钥",
|
||||||
"Clear all tokens?": "清楚所有密钥?",
|
"Clear all tokens?": "清楚所有密钥?",
|
||||||
"Cleared all tokens": "已清楚所有密钥",
|
"Cleared all tokens": "已清楚所有密钥",
|
||||||
|
"clearing them means that you will need to re-enter the passwords again.": "清除它们意味着下次访问时您需要重新输入密钥。",
|
||||||
"Copied direct link to clipboard.": "已复制直链到剪贴板。",
|
"Copied direct link to clipboard.": "已复制直链到剪贴板。",
|
||||||
"Copied folder permalink.": "已复制文件夹永久链接。",
|
"Copied folder permalink.": "已复制文件夹永久链接。",
|
||||||
"Copied raw file permalink.": "已复制文件永久链接。",
|
"Copied raw file permalink.": "已复制文件永久链接。",
|
||||||
@@ -18,10 +20,10 @@
|
|||||||
"Download folder": "下载此文件夹",
|
"Download folder": "下载此文件夹",
|
||||||
"Download selected files": "下载选定文件",
|
"Download selected files": "下载选定文件",
|
||||||
"Download the file directly through OneDrive": "直接从 OneDrive 下载文件",
|
"Download the file directly through OneDrive": "直接从 OneDrive 下载文件",
|
||||||
|
"Downloading {{progress}}%": "已下载 {{progress}}%",
|
||||||
"Downloading folder, refresh page to cancel": "下载文件夹中,刷新页面以取消",
|
"Downloading folder, refresh page to cancel": "下载文件夹中,刷新页面以取消",
|
||||||
"Downloading selected files, refresh page to cancel": "下载选定文件中,刷新页面以取消",
|
"Downloading selected files, refresh page to cancel": "下载选定文件中,刷新页面以取消",
|
||||||
"Downloading selected files...": "下载选定文件中...",
|
"Downloading selected files...": "下载选定文件中...",
|
||||||
"Downloading {{progress}}%": "已下载 {{progress}}%",
|
|
||||||
"Email": "电子邮件",
|
"Email": "电子邮件",
|
||||||
"Enter Password": "输入密码",
|
"Enter Password": "输入密码",
|
||||||
"Error: {{message}}": "错误:{{message}}",
|
"Error: {{message}}": "错误:{{message}}",
|
||||||
@@ -41,7 +43,7 @@
|
|||||||
"Name": "文件名",
|
"Name": "文件名",
|
||||||
"No more files": "加载完毕",
|
"No more files": "加载完毕",
|
||||||
"Nothing here.": "无内容。",
|
"Nothing here.": "无内容。",
|
||||||
"Oops, that's a <1>four-oh-four</1>.": "Oops,这里是 <1>404</1> 页面。",
|
"Oops, that's a <1>four-oh-four</1>.": "Oops,这里是 <1>404</1> 页面。",
|
||||||
"Press <2>F12</2> and open devtools for more details, or seek help at <6>onedrive-vercel-index discussions</6>.": "请按下 <2>F12</2> 来打开开发者工具窗口以获取详细信息,或是到 <6>onedrive-vercel-index 社区讨论</6> 处寻求帮助。",
|
"Press <2>F12</2> and open devtools for more details, or seek help at <6>onedrive-vercel-index discussions</6>.": "请按下 <2>F12</2> 来打开开发者工具窗口以获取详细信息,或是到 <6>onedrive-vercel-index 社区讨论</6> 处寻求帮助。",
|
||||||
"Search ...": "搜索……",
|
"Search ...": "搜索……",
|
||||||
"Select all files": "选择所有文件",
|
"Select all files": "选择所有文件",
|
||||||
@@ -50,7 +52,5 @@
|
|||||||
"Size": "文件大小",
|
"Size": "文件大小",
|
||||||
"These tokens are used to authenticate yourself into password protected folders, ": "这些密钥是用来验证您的身份以访问密钥保护下的文件夹的,",
|
"These tokens are used to authenticate yourself into password protected folders, ": "这些密钥是用来验证您的身份以访问密钥保护下的文件夹的,",
|
||||||
"This route (the folder itself and the files inside) is password protected. ": "此路由(此文件夹和其中的文件)是受密钥保护的。",
|
"This route (the folder itself and the files inside) is password protected. ": "此路由(此文件夹和其中的文件)是受密钥保护的。",
|
||||||
"Weibo": "微博",
|
"Weibo": "微博"
|
||||||
"clearing them means that you will need to re-enter the passwords again.": "清除它们意味着下次访问时您需要重新输入密钥。",
|
|
||||||
"{{count}} item(s)": "{{count}} 个项目"
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user