mirror of
https://github.com/Spythere/pragotron-td2.git
synced 2026-05-03 05:28:14 +00:00
Migracja na Vite; poprawki funkcjonalności
This commit is contained in:
@@ -1,3 +0,0 @@
|
|||||||
> 1%
|
|
||||||
last 2 versions
|
|
||||||
not dead
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
root: true,
|
|
||||||
env: {
|
|
||||||
node: true,
|
|
||||||
},
|
|
||||||
extends: [
|
|
||||||
'plugin:vue/vue3-essential',
|
|
||||||
'eslint:recommended',
|
|
||||||
'@vue/typescript/recommended',
|
|
||||||
'@vue/prettier',
|
|
||||||
'@vue/prettier/@typescript-eslint',
|
|
||||||
],
|
|
||||||
parserOptions: {
|
|
||||||
ecmaVersion: 2020,
|
|
||||||
},
|
|
||||||
rules: {
|
|
||||||
'no-console': 'off',
|
|
||||||
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
||||||
'prettier/prettier': 'off',
|
|
||||||
},
|
|
||||||
};
|
|
||||||
+12
-11
@@ -1,21 +1,22 @@
|
|||||||
.DS_Store
|
# Logs
|
||||||
node_modules
|
logs
|
||||||
/dist
|
*.log
|
||||||
|
|
||||||
|
|
||||||
# local env files
|
|
||||||
.env.local
|
|
||||||
.env.*.local
|
|
||||||
|
|
||||||
# Log files
|
|
||||||
npm-debug.log*
|
npm-debug.log*
|
||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
yarn-error.log*
|
yarn-error.log*
|
||||||
pnpm-debug.log*
|
pnpm-debug.log*
|
||||||
|
lerna-debug.log*
|
||||||
|
|
||||||
|
node_modules
|
||||||
|
dist
|
||||||
|
dist-ssr
|
||||||
|
*.local
|
||||||
|
|
||||||
# Editor directories and files
|
# Editor directories and files
|
||||||
|
.vscode/*
|
||||||
|
!.vscode/extensions.json
|
||||||
.idea
|
.idea
|
||||||
.vscode
|
.DS_Store
|
||||||
*.suo
|
*.suo
|
||||||
*.ntvs*
|
*.ntvs*
|
||||||
*.njsproj
|
*.njsproj
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
presets: ["@vue/cli-plugin-babel/preset"],
|
|
||||||
};
|
|
||||||
+13
@@ -0,0 +1,13 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>Vite + Vue + TS</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="app"></div>
|
||||||
|
<script type="module" src="/src/main.ts"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Generated
-30069
File diff suppressed because it is too large
Load Diff
+11
-23
@@ -1,33 +1,21 @@
|
|||||||
{
|
{
|
||||||
"name": "pragotron-td2",
|
"name": "pragotron-td2",
|
||||||
"version": "0.1.0",
|
|
||||||
"private": true,
|
"private": true,
|
||||||
|
"version": "0.2.0",
|
||||||
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"serve": "vue-cli-service serve",
|
"dev": "vite",
|
||||||
"build": "vue-cli-service build",
|
"build": "vue-tsc --noEmit && vite build",
|
||||||
"lint": "vue-cli-service lint"
|
"preview": "vite preview"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"core-js": "^3.6.5",
|
"sass": "^1.55.0",
|
||||||
"vue": "^3.0.0",
|
"vue": "^3.2.37"
|
||||||
"vue-class-component": "^8.0.0-0"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@typescript-eslint/eslint-plugin": "^4.18.0",
|
"@vitejs/plugin-vue": "^3.1.0",
|
||||||
"@typescript-eslint/parser": "^4.18.0",
|
"typescript": "^4.6.4",
|
||||||
"@vue/cli-plugin-babel": "~4.5.0",
|
"vite": "^3.1.0",
|
||||||
"@vue/cli-plugin-eslint": "~4.5.0",
|
"vue-tsc": "^1.0.0"
|
||||||
"@vue/cli-plugin-typescript": "~4.5.0",
|
|
||||||
"@vue/cli-service": "~4.5.0",
|
|
||||||
"@vue/compiler-sfc": "^3.0.0",
|
|
||||||
"@vue/eslint-config-prettier": "^6.0.0",
|
|
||||||
"@vue/eslint-config-typescript": "^7.0.0",
|
|
||||||
"eslint": "^6.7.2",
|
|
||||||
"eslint-plugin-prettier": "^3.3.1",
|
|
||||||
"eslint-plugin-vue": "^7.0.0",
|
|
||||||
"prettier": "^2.2.1",
|
|
||||||
"sass": "^1.26.5",
|
|
||||||
"sass-loader": "^8.0.2",
|
|
||||||
"typescript": "~4.1.5"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 4.2 KiB |
@@ -1,17 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
||||||
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
|
||||||
<title><%= htmlWebpackPlugin.options.title %></title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<noscript>
|
|
||||||
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
|
||||||
</noscript>
|
|
||||||
<div id="app"></div>
|
|
||||||
<!-- built files will be auto injected -->
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
+16
-34
@@ -2,7 +2,7 @@
|
|||||||
<div class="scenery-selector" v-if="!selectedStation">
|
<div class="scenery-selector" v-if="!selectedStation">
|
||||||
<select name="scenery" id="select-scenery" v-model="selectedStation">
|
<select name="scenery" id="select-scenery" v-model="selectedStation">
|
||||||
<option :value="null" disabled>Wybierz scenerię</option>
|
<option :value="null" disabled>Wybierz scenerię</option>
|
||||||
<option v-for="s in onlineStations" :key="s" :value="s">{{ s.stationName }}</option>
|
<option v-for="s in onlineStations" :value="s">{{ s.stationName }}</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -13,9 +13,9 @@
|
|||||||
import { provide, Ref, ref } from 'vue';
|
import { provide, Ref, ref } from 'vue';
|
||||||
import { defineComponent } from '@vue/runtime-core';
|
import { defineComponent } from '@vue/runtime-core';
|
||||||
import PragotronVue from './components/Pragotron.vue';
|
import PragotronVue from './components/Pragotron.vue';
|
||||||
|
import IStationData from './types/IStationData';
|
||||||
import { StationResponse } from '@/interfaces/StationAPI';
|
import { ISceneryResponse } from './types/ISceneryReponse';
|
||||||
import StationData from '@/interfaces/StationData';
|
import { IOnlineStationsResponse } from './types/IOnlineStationsResponse';
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
components: {
|
components: {
|
||||||
@@ -23,13 +23,13 @@ export default defineComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
setup() {
|
setup() {
|
||||||
const mockStation: StationData = {
|
const mockStation: IStationData = {
|
||||||
stationName: 'Lisków',
|
stationName: 'Czermin',
|
||||||
nameAbbreviation: '',
|
nameAbbreviation: '',
|
||||||
stationCheckpoints: [],
|
stationCheckpoints: [],
|
||||||
};
|
};
|
||||||
|
|
||||||
const selectedStation = ref(mockStation) as Ref<null | StationData>;
|
const selectedStation = ref(mockStation) as Ref<null | IStationData>;
|
||||||
|
|
||||||
provide('selectedStation', selectedStation);
|
provide('selectedStation', selectedStation);
|
||||||
|
|
||||||
@@ -39,40 +39,21 @@ export default defineComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
data: () => ({
|
data: () => ({
|
||||||
onlineStations: [] as StationData[],
|
onlineStations: [] as IStationData[],
|
||||||
}),
|
}),
|
||||||
|
|
||||||
async mounted() {
|
async mounted() {
|
||||||
/*
|
const stationDataArray: ISceneryResponse[] = await (
|
||||||
0: "LCS Żywiec"
|
await fetch('https://spythere.github.io/api/stationData.json')
|
||||||
1: "https://td2.info.pl/scenerie/lcs-zywiec/"
|
).json();
|
||||||
2: "97, 139"
|
|
||||||
3: null
|
|
||||||
4: "10"
|
|
||||||
5: "NIE"
|
|
||||||
6: "współczesna"
|
|
||||||
7: "SCS"
|
|
||||||
8: "" - sbl
|
|
||||||
9: "" - blokady
|
|
||||||
10: 3
|
|
||||||
11: 0
|
|
||||||
12: 0
|
|
||||||
13: 0
|
|
||||||
14: "Węgierska Górka;Żywiec;Łodygowice;Wilkowice Bystra;BB Leszczyny;BB Lipnik, podg."
|
|
||||||
15: true
|
|
||||||
16: false
|
|
||||||
17: false
|
|
||||||
*/
|
|
||||||
|
|
||||||
const stationDataArray: any[][] = await (await fetch('https://spythere.github.io/api/stationData.json')).json();
|
|
||||||
|
|
||||||
const stationDataJSON = stationDataArray.map((stationData) => ({
|
const stationDataJSON = stationDataArray.map((stationData) => ({
|
||||||
stationName: stationData[0] as string,
|
stationName: stationData.name,
|
||||||
stationCheckpoints: stationData[14] ? (stationData[14] as string).split(';') : [],
|
stationCheckpoints: stationData.checkpoints?.split(';') || [],
|
||||||
nameAbbreviation: '',
|
nameAbbreviation: '',
|
||||||
}));
|
}));
|
||||||
|
|
||||||
const stationsAPIResponse: StationResponse = await (
|
const stationsAPIResponse: IOnlineStationsResponse = await (
|
||||||
await fetch('https://api.td2.info.pl:9640/?method=getStationsOnline')
|
await fetch('https://api.td2.info.pl:9640/?method=getStationsOnline')
|
||||||
).json();
|
).json();
|
||||||
|
|
||||||
@@ -92,7 +73,7 @@ export default defineComponent({
|
|||||||
});
|
});
|
||||||
|
|
||||||
return acc;
|
return acc;
|
||||||
}, [] as StationData[])
|
}, [] as IStationData[])
|
||||||
.sort((s1, s2) => (s1.stationName > s2.stationName ? 1 : -1));
|
.sort((s1, s2) => (s1.stationName > s2.stationName ? 1 : -1));
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
@@ -141,3 +122,4 @@ option {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|||||||
+89
-109
@@ -87,35 +87,16 @@
|
|||||||
|
|
||||||
import { defineComponent, inject, reactive, Ref } from 'vue';
|
import { defineComponent, inject, reactive, Ref } from 'vue';
|
||||||
|
|
||||||
import stationAbbrevsJSON from '@/data/stationAbbrevs.json';
|
import stationAbbrevsJSON from '../data/stationAbbrevs.json';
|
||||||
import routeValues from '@/data/routeValues.json';
|
import routeValues from '../data/routeValues.json';
|
||||||
|
|
||||||
import { TrainResponse, TrainInfo } from '@/interfaces/TrainAPI';
|
import { IDeparture } from '../types/IDeparture';
|
||||||
import { TimetableResponse, TimetableInfo, TimetableStopInfo } from '@/interfaces/TimetableAPI';
|
import StationData from '../types/IStationData';
|
||||||
import StationData from '@/interfaces/StationData';
|
import { ITimetableStop, ITrainResponse } from '../types/ITrainResponse';
|
||||||
|
|
||||||
const stationAbbrevs: { [key: string]: string } = stationAbbrevsJSON;
|
const stationAbbrevs: { [key: string]: string } = stationAbbrevsJSON;
|
||||||
|
|
||||||
interface DepartureInfo {
|
const departureInfoEmptyObj: IDeparture = {
|
||||||
timetableId: number;
|
|
||||||
|
|
||||||
routeTo: string;
|
|
||||||
routeVia: string;
|
|
||||||
|
|
||||||
trainNumber: string;
|
|
||||||
|
|
||||||
departureDate: Date;
|
|
||||||
departureDigits: string[];
|
|
||||||
|
|
||||||
delayMinutes: number;
|
|
||||||
|
|
||||||
tableValues: {
|
|
||||||
routeTo: string;
|
|
||||||
routeVia: string;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
const departureInfoEmptyObj: DepartureInfo = {
|
|
||||||
timetableId: -1,
|
timetableId: -1,
|
||||||
|
|
||||||
routeTo: '',
|
routeTo: '',
|
||||||
@@ -126,6 +107,9 @@ const departureInfoEmptyObj: DepartureInfo = {
|
|||||||
departureDate: new Date(0),
|
departureDate: new Date(0),
|
||||||
departureDigits: [],
|
departureDigits: [],
|
||||||
|
|
||||||
|
arrivalTimestamp: 0,
|
||||||
|
departureTimestamp: 0,
|
||||||
|
|
||||||
delayMinutes: 0,
|
delayMinutes: 0,
|
||||||
|
|
||||||
tableValues: reactive({
|
tableValues: reactive({
|
||||||
@@ -142,7 +126,7 @@ export default defineComponent({
|
|||||||
|
|
||||||
lastRefreshTime: 0,
|
lastRefreshTime: 0,
|
||||||
|
|
||||||
departureList: new Array(7).fill(0).map(() => ({ ...departureInfoEmptyObj })) as DepartureInfo[],
|
departureList: new Array(7).fill(0).map(() => ({ ...departureInfoEmptyObj })) as IDeparture[],
|
||||||
departureRoutes: [''],
|
departureRoutes: [''],
|
||||||
|
|
||||||
currentRouteIndex: 0,
|
currentRouteIndex: 0,
|
||||||
@@ -163,54 +147,58 @@ export default defineComponent({
|
|||||||
return (name in stationAbbrevs ? stationAbbrevs[name] : name).toUpperCase();
|
return (name in stationAbbrevs ? stationAbbrevs[name] : name).toUpperCase();
|
||||||
},
|
},
|
||||||
|
|
||||||
// d = 0 -> time = time
|
update(time: number) {
|
||||||
// d = time -> time2 = time2-time
|
|
||||||
updateTableRows(time: number) {
|
|
||||||
if (time >= this.lastRefreshTime + 125) {
|
if (time >= this.lastRefreshTime + 125) {
|
||||||
this.departureList.forEach((dep, i) => {
|
this.updateTableRows();
|
||||||
if (dep.tableValues.routeTo.toLowerCase() != dep.routeTo.toLowerCase()) {
|
|
||||||
dep.tableValues.routeTo = this.departureRoutes[(this.currentRouteIndex + i) % this.departureRoutes.length];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (dep.tableValues.routeVia.toLowerCase() != dep.routeVia.toLowerCase()) {
|
|
||||||
dep.tableValues.routeVia = this.departureRoutes[(this.currentRouteIndex + i + 1) % this.departureRoutes.length];
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
this.currentRouteIndex = (this.currentRouteIndex + 1) % this.departureRoutes.length;
|
this.currentRouteIndex = (this.currentRouteIndex + 1) % this.departureRoutes.length;
|
||||||
this.lastRefreshTime = time;
|
this.lastRefreshTime = time;
|
||||||
}
|
}
|
||||||
|
requestAnimationFrame(this.update);
|
||||||
requestAnimationFrame(this.updateTableRows);
|
|
||||||
},
|
},
|
||||||
|
|
||||||
fillTable(departureUpdateList: DepartureInfo[] = []) {
|
// d = 0 -> time = time
|
||||||
for (let i = 0; i < 7; i++) {
|
// d = time -> time2 = time2-time
|
||||||
|
updateTableRows() {
|
||||||
|
this.departureList.forEach((dep, i) => {
|
||||||
|
if (dep.tableValues.routeTo.toLowerCase() != dep.routeTo.toLowerCase()) {
|
||||||
|
dep.tableValues.routeTo = this.departureRoutes[(this.currentRouteIndex + i) % this.departureRoutes.length];
|
||||||
|
}
|
||||||
|
|
||||||
|
if (dep.tableValues.routeVia.toLowerCase() != dep.routeVia.toLowerCase()) {
|
||||||
|
dep.tableValues.routeVia =
|
||||||
|
this.departureRoutes[(this.currentRouteIndex + i + 1) % this.departureRoutes.length];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
fillTable(departureUpdateList: IDeparture[] = []) {
|
||||||
|
for (let i = 0; i < this.departureList.length; i++) {
|
||||||
if (i <= departureUpdateList.length - 1) {
|
if (i <= departureUpdateList.length - 1) {
|
||||||
const updateInfo = departureUpdateList[i];
|
const updateInfo = departureUpdateList[i];
|
||||||
const existingInfo = this.departureList[i];
|
const existingInfo = this.departureList[i];
|
||||||
|
|
||||||
// if (updateInfo.delayMinutes != existingInfo.delayMinutes) {
|
// if (updateInfo.delayMinutes != existingInfo.delayMinutes) {
|
||||||
// this.departureList[i].delayMinutes = updateInfo.delayMinutes;
|
// this.sortedDepartureList[i].delayMinutes = updateInfo.delayMinutes;
|
||||||
// continue;
|
// continue;
|
||||||
// }
|
// }
|
||||||
|
|
||||||
// // Podmień jeśli
|
// // Podmień jeśli
|
||||||
// if (updateInfo.timetableId != existingInfo.timetableId) {
|
// if (updateInfo.timetableId != existingInfo.timetableId) {
|
||||||
// this.departureList[i] = updateInfo;
|
// this.sortedDepartureList[i] = updateInfo;
|
||||||
// }
|
// }
|
||||||
|
|
||||||
this.departureList[i] = updateInfo;
|
this.departureList[i] = { ...updateInfo };
|
||||||
this.departureList[i].tableValues.routeTo = existingInfo.routeTo;
|
this.departureList[i].tableValues.routeTo = existingInfo.routeTo;
|
||||||
this.departureList[i].tableValues.routeVia = existingInfo.routeVia;
|
this.departureList[i].tableValues.routeVia = existingInfo.routeVia;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
this.departureList[i] = departureInfoEmptyObj;
|
this.departureList[i] = departureInfoEmptyObj;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(this.departureList);
|
console.log(departureUpdateList);
|
||||||
},
|
},
|
||||||
|
|
||||||
shuffleRoutes() {
|
shuffleRoutes() {
|
||||||
for (let i = 0; i < 25; i++) {
|
for (let i = 0; i < 25; i++) {
|
||||||
const randIndex = Math.floor(Math.random() * routeValues.length);
|
const randIndex = Math.floor(Math.random() * routeValues.length);
|
||||||
@@ -223,96 +211,88 @@ export default defineComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
async fetchDepartureList() {
|
async fetchDepartureList() {
|
||||||
const trainsAPIResponse: TrainResponse = await (
|
const trainsAPIResponse: ITrainResponse[] = await (
|
||||||
await fetch('https://api.td2.info.pl:9640/?method=getTrainsOnline')
|
await fetch(`${import.meta.env.VITE_STACJOWNIK_API_URL}/api/getActiveTrainList`)
|
||||||
).json();
|
).json();
|
||||||
|
|
||||||
const departureList = (
|
if (!trainsAPIResponse) return;
|
||||||
await trainsAPIResponse.message.reduce(async (acc: Promise<DepartureInfo[]>, train: TrainInfo) => {
|
|
||||||
const timetableAPIResponse: TimetableResponse = await (
|
|
||||||
await fetch(`https://api.td2.info.pl:9640/?method=readFromSWDR&value=getTimetable%3B${train.trainNo}%3Beu`)
|
|
||||||
).json();
|
|
||||||
|
|
||||||
const timetable: TimetableInfo = timetableAPIResponse.message;
|
const updatedDepartureList = trainsAPIResponse.reduce((list, train) => {
|
||||||
|
if (!train.timetable) return list;
|
||||||
|
|
||||||
if (!timetable.trainInfo) return acc;
|
const timetable = train.timetable;
|
||||||
if (!timetable.stopPoints) return acc;
|
|
||||||
|
|
||||||
const stopInfo: TimetableStopInfo | undefined = timetable.stopPoints.find(
|
const stopInfo: ITimetableStop | undefined = timetable.stopList.find(
|
||||||
(sp) => sp.pointNameRAW.toLowerCase() == this.selectedStation.stationName.toLowerCase()
|
(sp) => sp.stopNameRAW.toLowerCase() == this.selectedStation.stationName.toLowerCase()
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!stopInfo) return acc;
|
if (!stopInfo || stopInfo.confirmed) return list;
|
||||||
if (!stopInfo.departureLine || !stopInfo.departureTime) return acc;
|
|
||||||
if (stopInfo.confirmed == 1) return acc;
|
|
||||||
|
|
||||||
const stopInfoIndex = timetable.stopPoints.indexOf(stopInfo);
|
const stopInfoIndex = timetable.stopList.indexOf(stopInfo);
|
||||||
const { timetableId, trainNo, route, trainCategoryCode } = timetable.trainInfo;
|
const { departureTimestamp, departureDelay, arrivalTimestamp, departureLine } = stopInfo;
|
||||||
const { departureTime, departureDelay } = stopInfo;
|
|
||||||
|
|
||||||
const routeVia =
|
const routeVia =
|
||||||
timetable.stopPoints.find((stop, i) => {
|
timetable.stopList.find((stop, i) => {
|
||||||
if (
|
return (
|
||||||
i > stopInfoIndex &&
|
i > stopInfoIndex &&
|
||||||
i != (timetable.stopPoints || []).length - 1 &&
|
// i < timetable.stopList.length - 1,
|
||||||
stop.pointName.includes('strong') &&
|
stop.stopName.includes('strong') &&
|
||||||
stop.pointStopTime &&
|
stop.stopTime &&
|
||||||
stop.pointStopTime > 0
|
stop.stopTime > 0
|
||||||
)
|
);
|
||||||
return true;
|
})?.stopNameRAW || '';
|
||||||
|
|
||||||
return false;
|
const departureDate = departureLine ? new Date(departureTimestamp) : undefined;
|
||||||
})?.pointNameRAW || '';
|
|
||||||
|
|
||||||
const departureDate = new Date(departureTime);
|
// [HH, MM, SS] - nienawidzę dat w JavaScripcie
|
||||||
|
const dateArray = departureDate?.toLocaleString('pl-PL').split(', ')[1].split(':') || [' ', ' ', ' ', ' '];
|
||||||
|
|
||||||
// [HH, MM, SS] - nienawidzę dat w JavaScripcie
|
// [H,H,M,M] - ZABIJCIE MNIE BŁAGAM
|
||||||
const dateArray = departureDate.toLocaleString('pl-PL').split(', ')[1].split(':');
|
const departureDigits = [...dateArray[0].split(''), ...dateArray[1].split('')];
|
||||||
|
|
||||||
// [H,H,M,M] - ZABIJCIE MNIE BŁAGAM
|
const routeTo = timetable.route.split('|')[1];
|
||||||
const departureDigits = [...dateArray[0].split(''), ...dateArray[1].split('')];
|
|
||||||
|
|
||||||
const routeTo = route.split('|')[1];
|
list.push({
|
||||||
|
trainNumber: `${timetable.category} ${train.trainNo}`,
|
||||||
|
timetableId: timetable.timetableId,
|
||||||
|
routeTo: routeTo,
|
||||||
|
routeVia: routeVia,
|
||||||
|
departureDate: departureDate,
|
||||||
|
departureDigits: departureDigits,
|
||||||
|
delayMinutes: departureDelay,
|
||||||
|
|
||||||
(await acc).push({
|
arrivalTimestamp,
|
||||||
timetableId,
|
departureTimestamp,
|
||||||
routeTo: routeTo,
|
|
||||||
routeVia,
|
|
||||||
trainNumber: `${trainCategoryCode} ${trainNo}`,
|
|
||||||
departureDate: new Date(departureTime),
|
|
||||||
departureDigits,
|
|
||||||
delayMinutes: departureDelay,
|
|
||||||
|
|
||||||
tableValues: reactive({
|
tableValues: reactive({
|
||||||
routeTo: '',
|
routeTo: '',
|
||||||
routeVia: '',
|
routeVia: '',
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
|
|
||||||
if (!this.departureRoutes.includes(routeVia)) this.departureRoutes.push(routeVia);
|
if (!this.departureRoutes.includes(routeVia)) this.departureRoutes.push(routeVia);
|
||||||
if (!this.departureRoutes.includes(routeTo)) this.departureRoutes.push(routeTo);
|
if (!this.departureRoutes.includes(routeTo)) this.departureRoutes.push(routeTo);
|
||||||
|
|
||||||
return acc;
|
return list;
|
||||||
}, Promise.resolve([]))
|
}, [] as IDeparture[]);
|
||||||
).sort((d1, d2) => (d1.departureDate > d2.departureDate ? 1 : -1));
|
|
||||||
|
|
||||||
this.fillTable(departureList);
|
this.fillTable(
|
||||||
|
updatedDepartureList
|
||||||
|
// .filter((dep) => dep.departureDate)
|
||||||
|
.sort((dep1, dep2) => (dep1.departureDate?.getTime() || 0) - (dep2.departureDate?.getTime() || 0))
|
||||||
|
);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
async mounted() {
|
async mounted() {
|
||||||
this.fillTable();
|
|
||||||
this.fetchDepartureList();
|
|
||||||
this.shuffleRoutes();
|
this.shuffleRoutes();
|
||||||
|
await this.fetchDepartureList();
|
||||||
|
|
||||||
setInterval(() => {
|
setInterval(() => {
|
||||||
this.fetchDepartureList();
|
this.fetchDepartureList();
|
||||||
this.shuffleRoutes();
|
|
||||||
|
|
||||||
console.log('Loading data');
|
|
||||||
}, 10000);
|
}, 10000);
|
||||||
|
|
||||||
requestAnimationFrame(this.updateTableRows);
|
requestAnimationFrame(this.update);
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -1,24 +0,0 @@
|
|||||||
export interface StationInfo {
|
|
||||||
dispatcherId: number;
|
|
||||||
dispatcherName: string;
|
|
||||||
dispatcherIsSupporter: boolean;
|
|
||||||
stationName: string;
|
|
||||||
stationHash: string;
|
|
||||||
region: string;
|
|
||||||
maxUsers: number;
|
|
||||||
currentUsers: number;
|
|
||||||
spawn: number;
|
|
||||||
lastSeen: any;
|
|
||||||
dispatcherExp: number;
|
|
||||||
nameFromHeader: string;
|
|
||||||
spawnString: string;
|
|
||||||
networkConnectionString: string;
|
|
||||||
isOnline: number;
|
|
||||||
dispatcherRate: number;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface StationResponse {
|
|
||||||
success: boolean;
|
|
||||||
respCode: number;
|
|
||||||
message: StationInfo[];
|
|
||||||
}
|
|
||||||
@@ -1,43 +0,0 @@
|
|||||||
export interface TimetableTrainInfo {
|
|
||||||
timetableId: number;
|
|
||||||
trainNo: number;
|
|
||||||
trainCategoryCode: string;
|
|
||||||
driverId: number;
|
|
||||||
driverName: string;
|
|
||||||
route: string;
|
|
||||||
twr: number;
|
|
||||||
skr: number;
|
|
||||||
sceneries: string[];
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface TimetableStopInfo {
|
|
||||||
arrivalLine?: string;
|
|
||||||
arrivalTime?: Date;
|
|
||||||
arrivalDelay: number;
|
|
||||||
arrivalRealTime?: Date;
|
|
||||||
pointDistance: number;
|
|
||||||
pointName: string;
|
|
||||||
pointNameRAW: string;
|
|
||||||
entryId: number;
|
|
||||||
pointId: string;
|
|
||||||
comments?: any;
|
|
||||||
confirmed: number;
|
|
||||||
isStopped: number;
|
|
||||||
pointStopTime?: number;
|
|
||||||
pointStopType: string;
|
|
||||||
departureLine?: string;
|
|
||||||
departureTime?: Date;
|
|
||||||
departureDelay: number;
|
|
||||||
departureRealTime?: Date;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface TimetableInfo {
|
|
||||||
trainInfo?: TimetableTrainInfo;
|
|
||||||
stopPoints?: TimetableStopInfo[];
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface TimetableResponse {
|
|
||||||
success: boolean;
|
|
||||||
respCode: number;
|
|
||||||
message: TimetableInfo;
|
|
||||||
}
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
export interface TrainInfo {
|
|
||||||
trainNo: number;
|
|
||||||
driverId: number;
|
|
||||||
driverName: string;
|
|
||||||
driverIsSupporter: boolean;
|
|
||||||
station: any;
|
|
||||||
dataSignal: string;
|
|
||||||
dataSceneryConnection: string;
|
|
||||||
dataDistance: number;
|
|
||||||
dataCon: string;
|
|
||||||
dataSpeed: number;
|
|
||||||
dataMass: number;
|
|
||||||
dataLength: number;
|
|
||||||
region: string;
|
|
||||||
isOnline: number;
|
|
||||||
lastSeen: any;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface TrainResponse {
|
|
||||||
success: boolean;
|
|
||||||
respCode: number;
|
|
||||||
message: TrainInfo[];
|
|
||||||
}
|
|
||||||
+3
-3
@@ -1,4 +1,4 @@
|
|||||||
import { createApp } from "vue";
|
import { createApp } from 'vue'
|
||||||
import App from "./App.vue";
|
import App from './App.vue'
|
||||||
|
|
||||||
createApp(App).mount("#app");
|
createApp(App).mount('#app')
|
||||||
|
|||||||
@@ -0,0 +1,21 @@
|
|||||||
|
interface IDepartureTableValues {
|
||||||
|
routeTo: string;
|
||||||
|
routeVia: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IDeparture {
|
||||||
|
trainNumber: string;
|
||||||
|
timetableId: number;
|
||||||
|
|
||||||
|
routeTo: string;
|
||||||
|
routeVia: string;
|
||||||
|
|
||||||
|
arrivalTimestamp: number;
|
||||||
|
departureTimestamp: number;
|
||||||
|
|
||||||
|
delayMinutes: number,
|
||||||
|
departureDate?: Date,
|
||||||
|
departureDigits: string[],
|
||||||
|
|
||||||
|
tableValues: IDepartureTableValues;
|
||||||
|
}
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
export interface IOnlineStation {
|
||||||
|
dispatcherId: number;
|
||||||
|
dispatcherName: string;
|
||||||
|
dispatcherIsSupporter: boolean;
|
||||||
|
stationName: string;
|
||||||
|
stationHash: string;
|
||||||
|
region: string;
|
||||||
|
maxUsers: number;
|
||||||
|
currentUsers: number;
|
||||||
|
spawn: number;
|
||||||
|
lastSeen: any;
|
||||||
|
dispatcherExp: number;
|
||||||
|
nameFromHeader: string;
|
||||||
|
spawnString: string;
|
||||||
|
networkConnectionString: string;
|
||||||
|
isOnline: number;
|
||||||
|
dispatcherRate: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IOnlineStationsResponse {
|
||||||
|
success: boolean;
|
||||||
|
respCode: number;
|
||||||
|
message: IOnlineStation[];
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
export interface ISceneryResponse {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
SUP: boolean;
|
||||||
|
authors: string;
|
||||||
|
availability: string;
|
||||||
|
backupJSON: string;
|
||||||
|
checkpoints: string;
|
||||||
|
controlType: string;
|
||||||
|
lines: string;
|
||||||
|
project: string;
|
||||||
|
reqLevel: number;
|
||||||
|
routes: string;
|
||||||
|
signalType: string;
|
||||||
|
supportersOnly?: boolean;
|
||||||
|
url: string;
|
||||||
|
}
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
17: false
|
17: false
|
||||||
*/
|
*/
|
||||||
|
|
||||||
export default interface StationData {
|
export default interface IStationData {
|
||||||
stationName: string;
|
stationName: string;
|
||||||
nameAbbreviation: string;
|
nameAbbreviation: string;
|
||||||
stationCheckpoints: string[];
|
stationCheckpoints: string[];
|
||||||
@@ -0,0 +1,53 @@
|
|||||||
|
export interface ITimetableStop {
|
||||||
|
stopName: string;
|
||||||
|
stopNameRAW: string;
|
||||||
|
stopType: string;
|
||||||
|
stopDistance: number;
|
||||||
|
pointId: string;
|
||||||
|
comments?: string;
|
||||||
|
mainStop: boolean;
|
||||||
|
arrivalLine: string | null;
|
||||||
|
arrivalTimestamp: number;
|
||||||
|
arrivalRealTimestamp: number;
|
||||||
|
arrivalDelay: number;
|
||||||
|
departureLine: string | null;
|
||||||
|
departureTimestamp: number;
|
||||||
|
departureRealTimestamp: number;
|
||||||
|
departureDelay: number;
|
||||||
|
beginsHere: boolean;
|
||||||
|
terminatesHere: boolean;
|
||||||
|
confirmed: number;
|
||||||
|
stopped: number;
|
||||||
|
stopTime?: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ITrainTimetable {
|
||||||
|
SKR: number;
|
||||||
|
TWR: number;
|
||||||
|
category: string;
|
||||||
|
stopList: ITimetableStop[];
|
||||||
|
route: string;
|
||||||
|
timetableId: number;
|
||||||
|
sceneries: string[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ITrainResponse {
|
||||||
|
trainNo: number;
|
||||||
|
mass: number;
|
||||||
|
speed: number;
|
||||||
|
length: number;
|
||||||
|
distance: number;
|
||||||
|
stockString: string;
|
||||||
|
driverName: string;
|
||||||
|
driverId: number;
|
||||||
|
driverIsSupporter: boolean;
|
||||||
|
currentStationHash: string;
|
||||||
|
currentStationName: string;
|
||||||
|
signal: string;
|
||||||
|
connectedTrack: string;
|
||||||
|
online: number;
|
||||||
|
lastSeen: any;
|
||||||
|
region: string;
|
||||||
|
isTimeout: boolean;
|
||||||
|
timetable: ITrainTimetable;
|
||||||
|
}
|
||||||
+2
-1
@@ -1,4 +1,5 @@
|
|||||||
/* eslint-disable */
|
/// <reference types="vite/client" />
|
||||||
|
|
||||||
declare module '*.vue' {
|
declare module '*.vue' {
|
||||||
import type { DefineComponent } from 'vue'
|
import type { DefineComponent } from 'vue'
|
||||||
const component: DefineComponent<{}, {}, any>
|
const component: DefineComponent<{}, {}, any>
|
||||||
+11
-34
@@ -1,41 +1,18 @@
|
|||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "esnext",
|
"target": "ESNext",
|
||||||
"module": "esnext",
|
"useDefineForClassFields": true,
|
||||||
|
"module": "ESNext",
|
||||||
|
"moduleResolution": "Node",
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"jsx": "preserve",
|
"jsx": "preserve",
|
||||||
"importHelpers": true,
|
|
||||||
"resolveJsonModule": true,
|
|
||||||
"moduleResolution": "node",
|
|
||||||
"experimentalDecorators": true,
|
|
||||||
"skipLibCheck": true,
|
|
||||||
"esModuleInterop": true,
|
|
||||||
"allowSyntheticDefaultImports": true,
|
|
||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
"baseUrl": ".",
|
"resolveJsonModule": true,
|
||||||
"types": [
|
"isolatedModules": true,
|
||||||
"webpack-env"
|
"esModuleInterop": true,
|
||||||
],
|
"lib": ["ESNext", "DOM"],
|
||||||
"paths": {
|
"skipLibCheck": true
|
||||||
"@/*": [
|
|
||||||
"src/*"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"lib": [
|
|
||||||
"esnext",
|
|
||||||
"dom",
|
|
||||||
"dom.iterable",
|
|
||||||
"scripthost"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"include": [
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
|
||||||
"src/**/*.ts",
|
"references": [{ "path": "./tsconfig.node.json" }]
|
||||||
"src/**/*.tsx",
|
|
||||||
"src/**/*.vue",
|
|
||||||
"tests/**/*.ts",
|
|
||||||
"tests/**/*.tsx"
|
|
||||||
],
|
|
||||||
"exclude": [
|
|
||||||
"node_modules"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"composite": true,
|
||||||
|
"module": "ESNext",
|
||||||
|
"moduleResolution": "Node",
|
||||||
|
"allowSyntheticDefaultImports": true
|
||||||
|
},
|
||||||
|
"include": ["vite.config.ts"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
import { defineConfig } from 'vite'
|
||||||
|
import vue from '@vitejs/plugin-vue'
|
||||||
|
|
||||||
|
// https://vitejs.dev/config/
|
||||||
|
export default defineConfig({
|
||||||
|
plugins: [vue()]
|
||||||
|
})
|
||||||
@@ -0,0 +1,603 @@
|
|||||||
|
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
||||||
|
# yarn lockfile v1
|
||||||
|
|
||||||
|
|
||||||
|
"@babel/parser@^7.16.4":
|
||||||
|
version "7.19.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.19.3.tgz#8dd36d17c53ff347f9e55c328710321b49479a9a"
|
||||||
|
integrity sha512-pJ9xOlNWHiy9+FuFP09DEAFbAn4JskgRsVcc169w2xRBC3FRGuQEwjeIMMND9L2zc0iEhO/tGv4Zq+km+hxNpQ==
|
||||||
|
|
||||||
|
"@esbuild/android-arm@0.15.10":
|
||||||
|
version "0.15.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.15.10.tgz#a5f9432eb221afc243c321058ef25fe899886892"
|
||||||
|
integrity sha512-FNONeQPy/ox+5NBkcSbYJxoXj9GWu8gVGJTVmUyoOCKQFDTrHVKgNSzChdNt0I8Aj/iKcsDf2r9BFwv+FSNUXg==
|
||||||
|
|
||||||
|
"@esbuild/linux-loong64@0.15.10":
|
||||||
|
version "0.15.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.15.10.tgz#78a42897c2cf8db9fd5f1811f7590393b77774c7"
|
||||||
|
integrity sha512-w0Ou3Z83LOYEkwaui2M8VwIp+nLi/NA60lBLMvaJ+vXVMcsARYdEzLNE7RSm4+lSg4zq4d7fAVuzk7PNQ5JFgg==
|
||||||
|
|
||||||
|
"@vitejs/plugin-vue@^3.1.0":
|
||||||
|
version "3.1.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-3.1.2.tgz#3cd52114e8871a0b5e7bd7d837469c032e503036"
|
||||||
|
integrity sha512-3zxKNlvA3oNaKDYX0NBclgxTQ1xaFdL7PzwF6zj9tGFziKwmBa3Q/6XcJQxudlT81WxDjEhHmevvIC4Orc1LhQ==
|
||||||
|
|
||||||
|
"@volar/language-core@1.0.0":
|
||||||
|
version "1.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@volar/language-core/-/language-core-1.0.0.tgz#57fea42d061793f39f7231ed41f2533cf9ce2d5b"
|
||||||
|
integrity sha512-gUeIyRmPD9dtCAADK+ZCr0n4n1lbwsGJ+ulQn//phfD+p9B1E9B4o2WRoeOOAkcqXZTEFmCxtg+S6Pa0pwUVHA==
|
||||||
|
dependencies:
|
||||||
|
"@volar/source-map" "1.0.0"
|
||||||
|
"@vue/reactivity" "^3.2.38"
|
||||||
|
muggle-string "^0.1.0"
|
||||||
|
|
||||||
|
"@volar/source-map@1.0.0":
|
||||||
|
version "1.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@volar/source-map/-/source-map-1.0.0.tgz#963d281d4e4bcba32592bc77b2b1f1f4c0b8ea43"
|
||||||
|
integrity sha512-EyIauGZmii2d4FicOw9eUnjq5nX/lqxKoPDPAZSGfkYOI/zfhhRydjLWR/BTbtPEV+Pqu6p5QjV3ts2/jQtKPw==
|
||||||
|
dependencies:
|
||||||
|
muggle-string "^0.1.0"
|
||||||
|
|
||||||
|
"@volar/typescript-faster@1.0.0":
|
||||||
|
version "1.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@volar/typescript-faster/-/typescript-faster-1.0.0.tgz#5ab4315148baec2feb5eb4a1efabb8b79de1c5b0"
|
||||||
|
integrity sha512-QsKMB2bEfWMKaPKW5HDmvBsusIgGx0WG1U30EaHwpnME25XZSJh1a5BZh9uUQcZteLkjtEfAmCI2PkfDgz1zew==
|
||||||
|
dependencies:
|
||||||
|
semver "^7.3.7"
|
||||||
|
|
||||||
|
"@volar/typescript@1.0.0":
|
||||||
|
version "1.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@volar/typescript/-/typescript-1.0.0.tgz#281567d955285cdddd9bd8f396e88acdb7d7ac03"
|
||||||
|
integrity sha512-0BsNJnN/VuQ3WQ3RmdJo7Xf8pwT0JCV0xdtgH9okEMeuXBLPZjg7tKwDHT3TY8ord1mVk0tjNnzyQJAhaQ8t0w==
|
||||||
|
dependencies:
|
||||||
|
"@volar/language-core" "1.0.0"
|
||||||
|
"@volar/typescript-faster" "1.0.0"
|
||||||
|
|
||||||
|
"@volar/vue-language-core@1.0.0":
|
||||||
|
version "1.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@volar/vue-language-core/-/vue-language-core-1.0.0.tgz#fae737411063c55d83169581c6882e93bb50629c"
|
||||||
|
integrity sha512-BYJvROEGNMDxTbyT7j9B9i8VDeLzEwDijNy2WactsK4mhruYRp911BwI9UNia4dD6RgMhyIShExRNoCwtCNMtw==
|
||||||
|
dependencies:
|
||||||
|
"@volar/language-core" "1.0.0"
|
||||||
|
"@volar/source-map" "1.0.0"
|
||||||
|
"@vue/compiler-dom" "^3.2.38"
|
||||||
|
"@vue/compiler-sfc" "^3.2.38"
|
||||||
|
"@vue/reactivity" "^3.2.38"
|
||||||
|
"@vue/shared" "^3.2.38"
|
||||||
|
minimatch "^5.1.0"
|
||||||
|
vue-template-compiler "^2.7.10"
|
||||||
|
|
||||||
|
"@volar/vue-typescript@1.0.0":
|
||||||
|
version "1.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@volar/vue-typescript/-/vue-typescript-1.0.0.tgz#322bc9b354d08a92bd51e64a42594aa3f97e62ba"
|
||||||
|
integrity sha512-W9qU96gdApnEgHZf6i9BKQVDJqreYKVsXDRdJPtJEeykSwi6an0LYwgkpCfDjW3pyeVYSYAxVegYE8rSo9k4IA==
|
||||||
|
dependencies:
|
||||||
|
"@volar/typescript" "1.0.0"
|
||||||
|
"@volar/vue-language-core" "1.0.0"
|
||||||
|
|
||||||
|
"@vue/compiler-core@3.2.40":
|
||||||
|
version "3.2.40"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.2.40.tgz#c785501f09536748121e937fb87605bbb1ada8e5"
|
||||||
|
integrity sha512-2Dc3Stk0J/VyQ4OUr2yEC53kU28614lZS+bnrCbFSAIftBJ40g/2yQzf4mPBiFuqguMB7hyHaujdgZAQ67kZYA==
|
||||||
|
dependencies:
|
||||||
|
"@babel/parser" "^7.16.4"
|
||||||
|
"@vue/shared" "3.2.40"
|
||||||
|
estree-walker "^2.0.2"
|
||||||
|
source-map "^0.6.1"
|
||||||
|
|
||||||
|
"@vue/compiler-dom@3.2.40", "@vue/compiler-dom@^3.2.38":
|
||||||
|
version "3.2.40"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.2.40.tgz#c225418773774db536174d30d3f25ba42a33e7e4"
|
||||||
|
integrity sha512-OZCNyYVC2LQJy4H7h0o28rtk+4v+HMQygRTpmibGoG9wZyomQiS5otU7qo3Wlq5UfHDw2RFwxb9BJgKjVpjrQw==
|
||||||
|
dependencies:
|
||||||
|
"@vue/compiler-core" "3.2.40"
|
||||||
|
"@vue/shared" "3.2.40"
|
||||||
|
|
||||||
|
"@vue/compiler-sfc@3.2.40", "@vue/compiler-sfc@^3.2.38":
|
||||||
|
version "3.2.40"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.2.40.tgz#61823283efc84d25d9d2989458f305d32a2ed141"
|
||||||
|
integrity sha512-tzqwniIN1fu1PDHC3CpqY/dPCfN/RN1thpBC+g69kJcrl7mbGiHKNwbA6kJ3XKKy8R6JLKqcpVugqN4HkeBFFg==
|
||||||
|
dependencies:
|
||||||
|
"@babel/parser" "^7.16.4"
|
||||||
|
"@vue/compiler-core" "3.2.40"
|
||||||
|
"@vue/compiler-dom" "3.2.40"
|
||||||
|
"@vue/compiler-ssr" "3.2.40"
|
||||||
|
"@vue/reactivity-transform" "3.2.40"
|
||||||
|
"@vue/shared" "3.2.40"
|
||||||
|
estree-walker "^2.0.2"
|
||||||
|
magic-string "^0.25.7"
|
||||||
|
postcss "^8.1.10"
|
||||||
|
source-map "^0.6.1"
|
||||||
|
|
||||||
|
"@vue/compiler-ssr@3.2.40":
|
||||||
|
version "3.2.40"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.2.40.tgz#67df95a096c63e9ec4b50b84cc6f05816793629c"
|
||||||
|
integrity sha512-80cQcgasKjrPPuKcxwuCx7feq+wC6oFl5YaKSee9pV3DNq+6fmCVwEEC3vvkf/E2aI76rIJSOYHsWSEIxK74oQ==
|
||||||
|
dependencies:
|
||||||
|
"@vue/compiler-dom" "3.2.40"
|
||||||
|
"@vue/shared" "3.2.40"
|
||||||
|
|
||||||
|
"@vue/reactivity-transform@3.2.40":
|
||||||
|
version "3.2.40"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vue/reactivity-transform/-/reactivity-transform-3.2.40.tgz#dc24b9074b26f0d9dd2034c6349f5bb2a51c86ac"
|
||||||
|
integrity sha512-HQUCVwEaacq6fGEsg2NUuGKIhUveMCjOk8jGHqLXPI2w6zFoPrlQhwWEaINTv5kkZDXKEnCijAp+4gNEHG03yw==
|
||||||
|
dependencies:
|
||||||
|
"@babel/parser" "^7.16.4"
|
||||||
|
"@vue/compiler-core" "3.2.40"
|
||||||
|
"@vue/shared" "3.2.40"
|
||||||
|
estree-walker "^2.0.2"
|
||||||
|
magic-string "^0.25.7"
|
||||||
|
|
||||||
|
"@vue/reactivity@3.2.40", "@vue/reactivity@^3.2.38":
|
||||||
|
version "3.2.40"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.2.40.tgz#ae65496f5b364e4e481c426f391568ed7d133cca"
|
||||||
|
integrity sha512-N9qgGLlZmtUBMHF9xDT4EkD9RdXde1Xbveb+niWMXuHVWQP5BzgRmE3SFyUBBcyayG4y1lhoz+lphGRRxxK4RA==
|
||||||
|
dependencies:
|
||||||
|
"@vue/shared" "3.2.40"
|
||||||
|
|
||||||
|
"@vue/runtime-core@3.2.40":
|
||||||
|
version "3.2.40"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.2.40.tgz#e814358bf1b0ff6d4a6b4f8f62d9f341964fb275"
|
||||||
|
integrity sha512-U1+rWf0H8xK8aBUZhnrN97yoZfHbjgw/bGUzfgKPJl69/mXDuSg8CbdBYBn6VVQdR947vWneQBFzdhasyzMUKg==
|
||||||
|
dependencies:
|
||||||
|
"@vue/reactivity" "3.2.40"
|
||||||
|
"@vue/shared" "3.2.40"
|
||||||
|
|
||||||
|
"@vue/runtime-dom@3.2.40":
|
||||||
|
version "3.2.40"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.2.40.tgz#975119feac5ab703aa9bbbf37c9cc966602c8eab"
|
||||||
|
integrity sha512-AO2HMQ+0s2+MCec8hXAhxMgWhFhOPJ/CyRXnmTJ6XIOnJFLrH5Iq3TNwvVcODGR295jy77I6dWPj+wvFoSYaww==
|
||||||
|
dependencies:
|
||||||
|
"@vue/runtime-core" "3.2.40"
|
||||||
|
"@vue/shared" "3.2.40"
|
||||||
|
csstype "^2.6.8"
|
||||||
|
|
||||||
|
"@vue/server-renderer@3.2.40":
|
||||||
|
version "3.2.40"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.2.40.tgz#55eaac31f7105c3907e1895129bf4efb6b0ce393"
|
||||||
|
integrity sha512-gtUcpRwrXOJPJ4qyBpU3EyxQa4EkV8I4f8VrDePcGCPe4O/hd0BPS7v9OgjIQob6Ap8VDz9G+mGTKazE45/95w==
|
||||||
|
dependencies:
|
||||||
|
"@vue/compiler-ssr" "3.2.40"
|
||||||
|
"@vue/shared" "3.2.40"
|
||||||
|
|
||||||
|
"@vue/shared@3.2.40", "@vue/shared@^3.2.38":
|
||||||
|
version "3.2.40"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.2.40.tgz#e57799da2a930b975321981fcee3d1e90ed257ae"
|
||||||
|
integrity sha512-0PLQ6RUtZM0vO3teRfzGi4ltLUO5aO+kLgwh4Um3THSR03rpQWLTuRCkuO5A41ITzwdWeKdPHtSARuPkoo5pCQ==
|
||||||
|
|
||||||
|
anymatch@~3.1.2:
|
||||||
|
version "3.1.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
|
||||||
|
integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
|
||||||
|
dependencies:
|
||||||
|
normalize-path "^3.0.0"
|
||||||
|
picomatch "^2.0.4"
|
||||||
|
|
||||||
|
balanced-match@^1.0.0:
|
||||||
|
version "1.0.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
|
||||||
|
integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
|
||||||
|
|
||||||
|
binary-extensions@^2.0.0:
|
||||||
|
version "2.2.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
|
||||||
|
integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
|
||||||
|
|
||||||
|
brace-expansion@^2.0.1:
|
||||||
|
version "2.0.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae"
|
||||||
|
integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==
|
||||||
|
dependencies:
|
||||||
|
balanced-match "^1.0.0"
|
||||||
|
|
||||||
|
braces@~3.0.2:
|
||||||
|
version "3.0.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
|
||||||
|
integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
|
||||||
|
dependencies:
|
||||||
|
fill-range "^7.0.1"
|
||||||
|
|
||||||
|
"chokidar@>=3.0.0 <4.0.0":
|
||||||
|
version "3.5.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd"
|
||||||
|
integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==
|
||||||
|
dependencies:
|
||||||
|
anymatch "~3.1.2"
|
||||||
|
braces "~3.0.2"
|
||||||
|
glob-parent "~5.1.2"
|
||||||
|
is-binary-path "~2.1.0"
|
||||||
|
is-glob "~4.0.1"
|
||||||
|
normalize-path "~3.0.0"
|
||||||
|
readdirp "~3.6.0"
|
||||||
|
optionalDependencies:
|
||||||
|
fsevents "~2.3.2"
|
||||||
|
|
||||||
|
csstype@^2.6.8:
|
||||||
|
version "2.6.21"
|
||||||
|
resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.21.tgz#2efb85b7cc55c80017c66a5ad7cbd931fda3a90e"
|
||||||
|
integrity sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==
|
||||||
|
|
||||||
|
de-indent@^1.0.2:
|
||||||
|
version "1.0.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/de-indent/-/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d"
|
||||||
|
integrity sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==
|
||||||
|
|
||||||
|
esbuild-android-64@0.15.10:
|
||||||
|
version "0.15.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/esbuild-android-64/-/esbuild-android-64-0.15.10.tgz#8a59a84acbf2eca96996cadc35642cf055c494f0"
|
||||||
|
integrity sha512-UI7krF8OYO1N7JYTgLT9ML5j4+45ra3amLZKx7LO3lmLt1Ibn8t3aZbX5Pu4BjWiqDuJ3m/hsvhPhK/5Y/YpnA==
|
||||||
|
|
||||||
|
esbuild-android-arm64@0.15.10:
|
||||||
|
version "0.15.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/esbuild-android-arm64/-/esbuild-android-arm64-0.15.10.tgz#f453851dc1d8c5409a38cf7613a33852faf4915d"
|
||||||
|
integrity sha512-EOt55D6xBk5O05AK8brXUbZmoFj4chM8u3riGflLa6ziEoVvNjRdD7Cnp82NHQGfSHgYR06XsPI8/sMuA/cUwg==
|
||||||
|
|
||||||
|
esbuild-darwin-64@0.15.10:
|
||||||
|
version "0.15.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/esbuild-darwin-64/-/esbuild-darwin-64-0.15.10.tgz#778bd29c8186ff47b176c8af58c08cf0fb8e6b86"
|
||||||
|
integrity sha512-hbDJugTicqIm+WKZgp208d7FcXcaK8j2c0l+fqSJ3d2AzQAfjEYDRM3Z2oMeqSJ9uFxyj/muSACLdix7oTstRA==
|
||||||
|
|
||||||
|
esbuild-darwin-arm64@0.15.10:
|
||||||
|
version "0.15.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.10.tgz#b30bbefb46dc3c5d4708b0435e52f6456578d6df"
|
||||||
|
integrity sha512-M1t5+Kj4IgSbYmunf2BB6EKLkWUq+XlqaFRiGOk8bmBapu9bCDrxjf4kUnWn59Dka3I27EiuHBKd1rSO4osLFQ==
|
||||||
|
|
||||||
|
esbuild-freebsd-64@0.15.10:
|
||||||
|
version "0.15.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.10.tgz#ab301c5f6ded5110dbdd611140bef1a7c2e99236"
|
||||||
|
integrity sha512-KMBFMa7C8oc97nqDdoZwtDBX7gfpolkk6Bcmj6YFMrtCMVgoU/x2DI1p74DmYl7CSS6Ppa3xgemrLrr5IjIn0w==
|
||||||
|
|
||||||
|
esbuild-freebsd-arm64@0.15.10:
|
||||||
|
version "0.15.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.10.tgz#a5b09b867a6ff49110f52343b6f12265db63d43f"
|
||||||
|
integrity sha512-m2KNbuCX13yQqLlbSojFMHpewbn8wW5uDS6DxRpmaZKzyq8Dbsku6hHvh2U+BcLwWY4mpgXzFUoENEf7IcioGg==
|
||||||
|
|
||||||
|
esbuild-linux-32@0.15.10:
|
||||||
|
version "0.15.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/esbuild-linux-32/-/esbuild-linux-32-0.15.10.tgz#5282fe9915641caf9c8070e4ba2c3e16d358f837"
|
||||||
|
integrity sha512-guXrwSYFAvNkuQ39FNeV4sNkNms1bLlA5vF1H0cazZBOLdLFIny6BhT+TUbK/hdByMQhtWQ5jI9VAmPKbVPu1w==
|
||||||
|
|
||||||
|
esbuild-linux-64@0.15.10:
|
||||||
|
version "0.15.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/esbuild-linux-64/-/esbuild-linux-64-0.15.10.tgz#f3726e85a00149580cb19f8abfabcbb96f5d52bb"
|
||||||
|
integrity sha512-jd8XfaSJeucMpD63YNMO1JCrdJhckHWcMv6O233bL4l6ogQKQOxBYSRP/XLWP+6kVTu0obXovuckJDcA0DKtQA==
|
||||||
|
|
||||||
|
esbuild-linux-arm64@0.15.10:
|
||||||
|
version "0.15.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.10.tgz#2f0056e9d5286edb0185b56655caa8c574d8dbe7"
|
||||||
|
integrity sha512-GByBi4fgkvZFTHFDYNftu1DQ1GzR23jws0oWyCfhnI7eMOe+wgwWrc78dbNk709Ivdr/evefm2PJiUBMiusS1A==
|
||||||
|
|
||||||
|
esbuild-linux-arm@0.15.10:
|
||||||
|
version "0.15.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/esbuild-linux-arm/-/esbuild-linux-arm-0.15.10.tgz#40a9270da3c8ffa32cf72e24a79883e323dff08d"
|
||||||
|
integrity sha512-6N8vThLL/Lysy9y4Ex8XoLQAlbZKUyExCWyayGi2KgTBelKpPgj6RZnUaKri0dHNPGgReJriKVU6+KDGQwn10A==
|
||||||
|
|
||||||
|
esbuild-linux-mips64le@0.15.10:
|
||||||
|
version "0.15.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.10.tgz#90ce1c4ee0202edb4ac69807dea77f7e5804abc4"
|
||||||
|
integrity sha512-BxP+LbaGVGIdQNJUNF7qpYjEGWb0YyHVSKqYKrn+pTwH/SiHUxFyJYSP3pqkku61olQiSBnSmWZ+YUpj78Tw7Q==
|
||||||
|
|
||||||
|
esbuild-linux-ppc64le@0.15.10:
|
||||||
|
version "0.15.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.10.tgz#782837ae7bd5b279178106c9dd801755a21fabdf"
|
||||||
|
integrity sha512-LoSQCd6498PmninNgqd/BR7z3Bsk/mabImBWuQ4wQgmQEeanzWd5BQU2aNi9mBURCLgyheuZS6Xhrw5luw3OkQ==
|
||||||
|
|
||||||
|
esbuild-linux-riscv64@0.15.10:
|
||||||
|
version "0.15.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.10.tgz#d7420d806ece5174f24f4634303146f915ab4207"
|
||||||
|
integrity sha512-Lrl9Cr2YROvPV4wmZ1/g48httE8z/5SCiXIyebiB5N8VT7pX3t6meI7TQVHw/wQpqP/AF4SksDuFImPTM7Z32Q==
|
||||||
|
|
||||||
|
esbuild-linux-s390x@0.15.10:
|
||||||
|
version "0.15.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.10.tgz#21fdf0cb3494a7fb520a71934e4dffce67fe47be"
|
||||||
|
integrity sha512-ReP+6q3eLVVP2lpRrvl5EodKX7EZ1bS1/z5j6hsluAlZP5aHhk6ghT6Cq3IANvvDdscMMCB4QEbI+AjtvoOFpA==
|
||||||
|
|
||||||
|
esbuild-netbsd-64@0.15.10:
|
||||||
|
version "0.15.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.10.tgz#6c06b3107e3df53de381e6299184d4597db0440f"
|
||||||
|
integrity sha512-iGDYtJCMCqldMskQ4eIV+QSS/CuT7xyy9i2/FjpKvxAuCzrESZXiA1L64YNj6/afuzfBe9i8m/uDkFHy257hTw==
|
||||||
|
|
||||||
|
esbuild-openbsd-64@0.15.10:
|
||||||
|
version "0.15.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.10.tgz#4daef5f5d8e74bbda53b65160029445d582570cf"
|
||||||
|
integrity sha512-ftMMIwHWrnrYnvuJQRJs/Smlcb28F9ICGde/P3FUTCgDDM0N7WA0o9uOR38f5Xe2/OhNCgkjNeb7QeaE3cyWkQ==
|
||||||
|
|
||||||
|
esbuild-sunos-64@0.15.10:
|
||||||
|
version "0.15.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/esbuild-sunos-64/-/esbuild-sunos-64-0.15.10.tgz#5fe7bef267a02f322fd249a8214d0274937388a7"
|
||||||
|
integrity sha512-mf7hBL9Uo2gcy2r3rUFMjVpTaGpFJJE5QTDDqUFf1632FxteYANffDZmKbqX0PfeQ2XjUDE604IcE7OJeoHiyg==
|
||||||
|
|
||||||
|
esbuild-windows-32@0.15.10:
|
||||||
|
version "0.15.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/esbuild-windows-32/-/esbuild-windows-32-0.15.10.tgz#48e3dde25ab0135579a288b30ab6ddef6d1f0b28"
|
||||||
|
integrity sha512-ttFVo+Cg8b5+qHmZHbEc8Vl17kCleHhLzgT8X04y8zudEApo0PxPg9Mz8Z2cKH1bCYlve1XL8LkyXGFjtUYeGg==
|
||||||
|
|
||||||
|
esbuild-windows-64@0.15.10:
|
||||||
|
version "0.15.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/esbuild-windows-64/-/esbuild-windows-64-0.15.10.tgz#387a9515bef3fee502d277a5d0a2db49a4ecda05"
|
||||||
|
integrity sha512-2H0gdsyHi5x+8lbng3hLbxDWR7mKHWh5BXZGKVG830KUmXOOWFE2YKJ4tHRkejRduOGDrBvHBriYsGtmTv3ntA==
|
||||||
|
|
||||||
|
esbuild-windows-arm64@0.15.10:
|
||||||
|
version "0.15.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.10.tgz#5a6fcf2fa49e895949bf5495cf088ab1b43ae879"
|
||||||
|
integrity sha512-S+th4F+F8VLsHLR0zrUcG+Et4hx0RKgK1eyHc08kztmLOES8BWwMiaGdoW9hiXuzznXQ0I/Fg904MNbr11Nktw==
|
||||||
|
|
||||||
|
esbuild@^0.15.9:
|
||||||
|
version "0.15.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.15.10.tgz#85c2f8446e9b1fe04fae68daceacba033eedbd42"
|
||||||
|
integrity sha512-N7wBhfJ/E5fzn/SpNgX+oW2RLRjwaL8Y0ezqNqhjD6w0H2p0rDuEz2FKZqpqLnO8DCaWumKe8dsC/ljvVSSxng==
|
||||||
|
optionalDependencies:
|
||||||
|
"@esbuild/android-arm" "0.15.10"
|
||||||
|
"@esbuild/linux-loong64" "0.15.10"
|
||||||
|
esbuild-android-64 "0.15.10"
|
||||||
|
esbuild-android-arm64 "0.15.10"
|
||||||
|
esbuild-darwin-64 "0.15.10"
|
||||||
|
esbuild-darwin-arm64 "0.15.10"
|
||||||
|
esbuild-freebsd-64 "0.15.10"
|
||||||
|
esbuild-freebsd-arm64 "0.15.10"
|
||||||
|
esbuild-linux-32 "0.15.10"
|
||||||
|
esbuild-linux-64 "0.15.10"
|
||||||
|
esbuild-linux-arm "0.15.10"
|
||||||
|
esbuild-linux-arm64 "0.15.10"
|
||||||
|
esbuild-linux-mips64le "0.15.10"
|
||||||
|
esbuild-linux-ppc64le "0.15.10"
|
||||||
|
esbuild-linux-riscv64 "0.15.10"
|
||||||
|
esbuild-linux-s390x "0.15.10"
|
||||||
|
esbuild-netbsd-64 "0.15.10"
|
||||||
|
esbuild-openbsd-64 "0.15.10"
|
||||||
|
esbuild-sunos-64 "0.15.10"
|
||||||
|
esbuild-windows-32 "0.15.10"
|
||||||
|
esbuild-windows-64 "0.15.10"
|
||||||
|
esbuild-windows-arm64 "0.15.10"
|
||||||
|
|
||||||
|
estree-walker@^2.0.2:
|
||||||
|
version "2.0.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac"
|
||||||
|
integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==
|
||||||
|
|
||||||
|
fill-range@^7.0.1:
|
||||||
|
version "7.0.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
|
||||||
|
integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
|
||||||
|
dependencies:
|
||||||
|
to-regex-range "^5.0.1"
|
||||||
|
|
||||||
|
fsevents@~2.3.2:
|
||||||
|
version "2.3.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
|
||||||
|
integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
|
||||||
|
|
||||||
|
function-bind@^1.1.1:
|
||||||
|
version "1.1.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
|
||||||
|
integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
|
||||||
|
|
||||||
|
glob-parent@~5.1.2:
|
||||||
|
version "5.1.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
|
||||||
|
integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
|
||||||
|
dependencies:
|
||||||
|
is-glob "^4.0.1"
|
||||||
|
|
||||||
|
has@^1.0.3:
|
||||||
|
version "1.0.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
|
||||||
|
integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
|
||||||
|
dependencies:
|
||||||
|
function-bind "^1.1.1"
|
||||||
|
|
||||||
|
he@^1.2.0:
|
||||||
|
version "1.2.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
|
||||||
|
integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
|
||||||
|
|
||||||
|
immutable@^4.0.0:
|
||||||
|
version "4.1.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.1.0.tgz#f795787f0db780183307b9eb2091fcac1f6fafef"
|
||||||
|
integrity sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==
|
||||||
|
|
||||||
|
is-binary-path@~2.1.0:
|
||||||
|
version "2.1.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
|
||||||
|
integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
|
||||||
|
dependencies:
|
||||||
|
binary-extensions "^2.0.0"
|
||||||
|
|
||||||
|
is-core-module@^2.9.0:
|
||||||
|
version "2.10.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed"
|
||||||
|
integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==
|
||||||
|
dependencies:
|
||||||
|
has "^1.0.3"
|
||||||
|
|
||||||
|
is-extglob@^2.1.1:
|
||||||
|
version "2.1.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
|
||||||
|
integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
|
||||||
|
|
||||||
|
is-glob@^4.0.1, is-glob@~4.0.1:
|
||||||
|
version "4.0.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
|
||||||
|
integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
|
||||||
|
dependencies:
|
||||||
|
is-extglob "^2.1.1"
|
||||||
|
|
||||||
|
is-number@^7.0.0:
|
||||||
|
version "7.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
|
||||||
|
integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
|
||||||
|
|
||||||
|
lru-cache@^6.0.0:
|
||||||
|
version "6.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
|
||||||
|
integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
|
||||||
|
dependencies:
|
||||||
|
yallist "^4.0.0"
|
||||||
|
|
||||||
|
magic-string@^0.25.7:
|
||||||
|
version "0.25.9"
|
||||||
|
resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.9.tgz#de7f9faf91ef8a1c91d02c2e5314c8277dbcdd1c"
|
||||||
|
integrity sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==
|
||||||
|
dependencies:
|
||||||
|
sourcemap-codec "^1.4.8"
|
||||||
|
|
||||||
|
minimatch@^5.1.0:
|
||||||
|
version "5.1.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.0.tgz#1717b464f4971b144f6aabe8f2d0b8e4511e09c7"
|
||||||
|
integrity sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==
|
||||||
|
dependencies:
|
||||||
|
brace-expansion "^2.0.1"
|
||||||
|
|
||||||
|
muggle-string@^0.1.0:
|
||||||
|
version "0.1.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/muggle-string/-/muggle-string-0.1.0.tgz#1fda8a281c8b27bb8b70466dbc9f27586a8baa6c"
|
||||||
|
integrity sha512-Tr1knR3d2mKvvWthlk7202rywKbiOm4rVFLsfAaSIhJ6dt9o47W4S+JMtWhd/PW9Wrdew2/S2fSvhz3E2gkfEg==
|
||||||
|
|
||||||
|
nanoid@^3.3.4:
|
||||||
|
version "3.3.4"
|
||||||
|
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab"
|
||||||
|
integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==
|
||||||
|
|
||||||
|
normalize-path@^3.0.0, normalize-path@~3.0.0:
|
||||||
|
version "3.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
|
||||||
|
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
|
||||||
|
|
||||||
|
path-parse@^1.0.7:
|
||||||
|
version "1.0.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
|
||||||
|
integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
|
||||||
|
|
||||||
|
picocolors@^1.0.0:
|
||||||
|
version "1.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
|
||||||
|
integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
|
||||||
|
|
||||||
|
picomatch@^2.0.4, picomatch@^2.2.1:
|
||||||
|
version "2.3.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
|
||||||
|
integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
|
||||||
|
|
||||||
|
postcss@^8.1.10, postcss@^8.4.16:
|
||||||
|
version "8.4.17"
|
||||||
|
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.17.tgz#f87863ec7cd353f81f7ab2dec5d67d861bbb1be5"
|
||||||
|
integrity sha512-UNxNOLQydcOFi41yHNMcKRZ39NeXlr8AxGuZJsdub8vIb12fHzcq37DTU/QtbI6WLxNg2gF9Z+8qtRwTj1UI1Q==
|
||||||
|
dependencies:
|
||||||
|
nanoid "^3.3.4"
|
||||||
|
picocolors "^1.0.0"
|
||||||
|
source-map-js "^1.0.2"
|
||||||
|
|
||||||
|
readdirp@~3.6.0:
|
||||||
|
version "3.6.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
|
||||||
|
integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
|
||||||
|
dependencies:
|
||||||
|
picomatch "^2.2.1"
|
||||||
|
|
||||||
|
resolve@^1.22.1:
|
||||||
|
version "1.22.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177"
|
||||||
|
integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==
|
||||||
|
dependencies:
|
||||||
|
is-core-module "^2.9.0"
|
||||||
|
path-parse "^1.0.7"
|
||||||
|
supports-preserve-symlinks-flag "^1.0.0"
|
||||||
|
|
||||||
|
rollup@~2.78.0:
|
||||||
|
version "2.78.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.78.1.tgz#52fe3934d9c83cb4f7c4cb5fb75d88591be8648f"
|
||||||
|
integrity sha512-VeeCgtGi4P+o9hIg+xz4qQpRl6R401LWEXBmxYKOV4zlF82lyhgh2hTZnheFUbANE8l2A41F458iwj2vEYaXJg==
|
||||||
|
optionalDependencies:
|
||||||
|
fsevents "~2.3.2"
|
||||||
|
|
||||||
|
sass@^1.55.0:
|
||||||
|
version "1.55.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/sass/-/sass-1.55.0.tgz#0c4d3c293cfe8f8a2e8d3b666e1cf1bff8065d1c"
|
||||||
|
integrity sha512-Pk+PMy7OGLs9WaxZGJMn7S96dvlyVBwwtToX895WmCpAOr5YiJYEUJfiJidMuKb613z2xNWcXCHEuOvjZbqC6A==
|
||||||
|
dependencies:
|
||||||
|
chokidar ">=3.0.0 <4.0.0"
|
||||||
|
immutable "^4.0.0"
|
||||||
|
source-map-js ">=0.6.2 <2.0.0"
|
||||||
|
|
||||||
|
semver@^7.3.7:
|
||||||
|
version "7.3.8"
|
||||||
|
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798"
|
||||||
|
integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==
|
||||||
|
dependencies:
|
||||||
|
lru-cache "^6.0.0"
|
||||||
|
|
||||||
|
"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.2:
|
||||||
|
version "1.0.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
|
||||||
|
integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
|
||||||
|
|
||||||
|
source-map@^0.6.1:
|
||||||
|
version "0.6.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
|
||||||
|
integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
|
||||||
|
|
||||||
|
sourcemap-codec@^1.4.8:
|
||||||
|
version "1.4.8"
|
||||||
|
resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4"
|
||||||
|
integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==
|
||||||
|
|
||||||
|
supports-preserve-symlinks-flag@^1.0.0:
|
||||||
|
version "1.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
|
||||||
|
integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
|
||||||
|
|
||||||
|
to-regex-range@^5.0.1:
|
||||||
|
version "5.0.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
|
||||||
|
integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
|
||||||
|
dependencies:
|
||||||
|
is-number "^7.0.0"
|
||||||
|
|
||||||
|
typescript@^4.6.4:
|
||||||
|
version "4.8.4"
|
||||||
|
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.4.tgz#c464abca159669597be5f96b8943500b238e60e6"
|
||||||
|
integrity sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==
|
||||||
|
|
||||||
|
vite@^3.1.0:
|
||||||
|
version "3.1.6"
|
||||||
|
resolved "https://registry.yarnpkg.com/vite/-/vite-3.1.6.tgz#4c6db3000326342c918204a42a130fb3ffed2414"
|
||||||
|
integrity sha512-qMXIwnehvvcK5XfJiXQUiTxoYAEMKhM+jqCY6ZSTKFBKu1hJnAKEzP3AOcnTerI0cMZYAaJ4wpW1wiXLMDt4mA==
|
||||||
|
dependencies:
|
||||||
|
esbuild "^0.15.9"
|
||||||
|
postcss "^8.4.16"
|
||||||
|
resolve "^1.22.1"
|
||||||
|
rollup "~2.78.0"
|
||||||
|
optionalDependencies:
|
||||||
|
fsevents "~2.3.2"
|
||||||
|
|
||||||
|
vue-template-compiler@^2.7.10:
|
||||||
|
version "2.7.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.7.10.tgz#9e20f35b2fdccacacf732dd7dedb49bf65f4556b"
|
||||||
|
integrity sha512-QO+8R9YRq1Gudm8ZMdo/lImZLJVUIAM8c07Vp84ojdDAf8HmPJc7XB556PcXV218k2AkKznsRz6xB5uOjAC4EQ==
|
||||||
|
dependencies:
|
||||||
|
de-indent "^1.0.2"
|
||||||
|
he "^1.2.0"
|
||||||
|
|
||||||
|
vue-tsc@^1.0.0:
|
||||||
|
version "1.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/vue-tsc/-/vue-tsc-1.0.0.tgz#adb844b08f55e962c43f33e453f8185090ac7570"
|
||||||
|
integrity sha512-QtQunVlF8SLs75s9FTCOOLXx6Fb5ccN6r3xDT4rUzznPzP6xfRC/iWhrJImEBRz74fhqXWPUMfujcmibnwYyXw==
|
||||||
|
dependencies:
|
||||||
|
"@volar/vue-language-core" "1.0.0"
|
||||||
|
"@volar/vue-typescript" "1.0.0"
|
||||||
|
|
||||||
|
vue@^3.2.37:
|
||||||
|
version "3.2.40"
|
||||||
|
resolved "https://registry.yarnpkg.com/vue/-/vue-3.2.40.tgz#23f387f6f9b3a0767938db6751e4fb5900f0ee34"
|
||||||
|
integrity sha512-1mGHulzUbl2Nk3pfvI5aXYYyJUs1nm4kyvuz38u4xlQkLUn1i2R7nDbI4TufECmY8v1qNBHYy62bCaM+3cHP2A==
|
||||||
|
dependencies:
|
||||||
|
"@vue/compiler-dom" "3.2.40"
|
||||||
|
"@vue/compiler-sfc" "3.2.40"
|
||||||
|
"@vue/runtime-dom" "3.2.40"
|
||||||
|
"@vue/server-renderer" "3.2.40"
|
||||||
|
"@vue/shared" "3.2.40"
|
||||||
|
|
||||||
|
yallist@^4.0.0:
|
||||||
|
version "4.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
|
||||||
|
integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
|
||||||
Reference in New Issue
Block a user