chore: stop tracking .dart_tool (contains host-absolute paths)
This commit is contained in:
@@ -1,18 +0,0 @@
|
|||||||
// Flutter web plugin registrant file.
|
|
||||||
//
|
|
||||||
// Generated file. Do not edit.
|
|
||||||
//
|
|
||||||
|
|
||||||
// @dart = 2.13
|
|
||||||
// ignore_for_file: type=lint
|
|
||||||
|
|
||||||
import 'package:file_picker/src/platform/web/file_picker_web.dart';
|
|
||||||
import 'package:shared_preferences_web/shared_preferences_web.dart';
|
|
||||||
import 'package:flutter_web_plugins/flutter_web_plugins.dart';
|
|
||||||
|
|
||||||
void registerPlugins([final Registrar? pluginRegistrar]) {
|
|
||||||
final Registrar registrar = pluginRegistrar ?? webPluginRegistrar;
|
|
||||||
FilePickerWeb.registerWith(registrar);
|
|
||||||
SharedPreferencesPlugin.registerWith(registrar);
|
|
||||||
registrar.registerMessageHandler();
|
|
||||||
}
|
|
||||||
@@ -1,122 +0,0 @@
|
|||||||
//
|
|
||||||
// Generated file. Do not edit.
|
|
||||||
// This file is generated from template in file `flutter_tools/lib/src/flutter_plugins.dart`.
|
|
||||||
//
|
|
||||||
|
|
||||||
// @dart = 3.3
|
|
||||||
|
|
||||||
import 'dart:io'; // flutter_ignore: dart_io_import.
|
|
||||||
import 'package:shared_preferences_android/shared_preferences_android.dart' as shared_preferences_android;
|
|
||||||
import 'package:shared_preferences_foundation/shared_preferences_foundation.dart' as shared_preferences_foundation;
|
|
||||||
import 'package:file_picker/file_picker.dart' as file_picker;
|
|
||||||
import 'package:path_provider_linux/path_provider_linux.dart' as path_provider_linux;
|
|
||||||
import 'package:shared_preferences_linux/shared_preferences_linux.dart' as shared_preferences_linux;
|
|
||||||
import 'package:file_picker/file_picker.dart' as file_picker;
|
|
||||||
import 'package:shared_preferences_foundation/shared_preferences_foundation.dart' as shared_preferences_foundation;
|
|
||||||
import 'package:file_picker/file_picker.dart' as file_picker;
|
|
||||||
import 'package:path_provider_windows/path_provider_windows.dart' as path_provider_windows;
|
|
||||||
import 'package:shared_preferences_windows/shared_preferences_windows.dart' as shared_preferences_windows;
|
|
||||||
|
|
||||||
@pragma('vm:entry-point')
|
|
||||||
class _PluginRegistrant {
|
|
||||||
|
|
||||||
@pragma('vm:entry-point')
|
|
||||||
static void register() {
|
|
||||||
if (Platform.isAndroid) {
|
|
||||||
try {
|
|
||||||
shared_preferences_android.SharedPreferencesAndroid.registerWith();
|
|
||||||
} catch (err) {
|
|
||||||
print(
|
|
||||||
'`shared_preferences_android` threw an error: $err. '
|
|
||||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
} else if (Platform.isIOS) {
|
|
||||||
try {
|
|
||||||
shared_preferences_foundation.SharedPreferencesFoundation.registerWith();
|
|
||||||
} catch (err) {
|
|
||||||
print(
|
|
||||||
'`shared_preferences_foundation` threw an error: $err. '
|
|
||||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
} else if (Platform.isLinux) {
|
|
||||||
try {
|
|
||||||
file_picker.FilePickerLinux.registerWith();
|
|
||||||
} catch (err) {
|
|
||||||
print(
|
|
||||||
'`file_picker` threw an error: $err. '
|
|
||||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
path_provider_linux.PathProviderLinux.registerWith();
|
|
||||||
} catch (err) {
|
|
||||||
print(
|
|
||||||
'`path_provider_linux` threw an error: $err. '
|
|
||||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
shared_preferences_linux.SharedPreferencesLinux.registerWith();
|
|
||||||
} catch (err) {
|
|
||||||
print(
|
|
||||||
'`shared_preferences_linux` threw an error: $err. '
|
|
||||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
} else if (Platform.isMacOS) {
|
|
||||||
try {
|
|
||||||
file_picker.FilePickerMacOS.registerWith();
|
|
||||||
} catch (err) {
|
|
||||||
print(
|
|
||||||
'`file_picker` threw an error: $err. '
|
|
||||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
shared_preferences_foundation.SharedPreferencesFoundation.registerWith();
|
|
||||||
} catch (err) {
|
|
||||||
print(
|
|
||||||
'`shared_preferences_foundation` threw an error: $err. '
|
|
||||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
} else if (Platform.isWindows) {
|
|
||||||
try {
|
|
||||||
file_picker.FilePickerWindows.registerWith();
|
|
||||||
} catch (err) {
|
|
||||||
print(
|
|
||||||
'`file_picker` threw an error: $err. '
|
|
||||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
path_provider_windows.PathProviderWindows.registerWith();
|
|
||||||
} catch (err) {
|
|
||||||
print(
|
|
||||||
'`path_provider_windows` threw an error: $err. '
|
|
||||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
shared_preferences_windows.SharedPreferencesWindows.registerWith();
|
|
||||||
} catch (err) {
|
|
||||||
print(
|
|
||||||
'`shared_preferences_windows` threw an error: $err. '
|
|
||||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
|||||||
{"inputs":["C:\\Users\\Nils-JohanGynther\\AppData\\Local\\Programs\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\Nils-JohanGynther\\AppData\\Local\\Programs\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\.dart_tool\\flutter_build\\f8c96b9ba70d270e1df926aec2a1e154\\main.dart","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\.dart_tool\\package_config.json"],"outputs":[],"buildKey":"{\"optimizationLevel\":null,\"webRenderer\":\"skwasm\",\"StripWasm\":true,\"minify\":null,\"dryRun\":true,\"SourceMaps\":false}"}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\.dart_tool\\flutter_build\\f8c96b9ba70d270e1df926aec2a1e154\\dart_build_result.json:
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
{"inputs":["C:\\Users\\Nils-JohanGynther\\AppData\\Local\\Programs\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\native_assets.dart","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\.dart_tool\\package_config.json"],"outputs":["C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\.dart_tool\\flutter_build\\f8c96b9ba70d270e1df926aec2a1e154\\dart_build_result.json","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\.dart_tool\\flutter_build\\f8c96b9ba70d270e1df926aec2a1e154\\dart_build_result.json"]}
|
|
||||||
-1
@@ -1 +0,0 @@
|
|||||||
{"build_start":"2026-04-23T19:22:42.204321","build_end":"2026-04-23T19:22:42.204321","dependencies":[],"code_assets":[],"data_assets":[]}
|
|
||||||
File diff suppressed because one or more lines are too long
-1
@@ -1 +0,0 @@
|
|||||||
{"inputs":["C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\lib\\l10n\\app_en.arb","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\lib\\l10n\\app_sv.arb"],"outputs":["C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\lib\\l10n\\generated\\app_localizations_en.dart","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\lib\\l10n\\generated\\app_localizations_sv.dart","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\lib\\l10n\\generated\\app_localizations.dart"]}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\lib\\l10n\\generated\\app_localizations_en.dart C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\lib\\l10n\\generated\\app_localizations_sv.dart C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\lib\\l10n\\generated\\app_localizations.dart: C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\l10n.yaml C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\lib\\l10n\\app_en.arb C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\lib\\l10n\\app_sv.arb
|
|
||||||
-1
@@ -1 +0,0 @@
|
|||||||
{"inputs":["C:\\Users\\Nils-JohanGynther\\AppData\\Local\\Programs\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\localizations.dart","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\l10n.yaml","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\lib\\l10n\\app_en.arb","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\lib\\l10n\\app_sv.arb"],"outputs":["C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\lib\\l10n\\generated\\app_localizations_en.dart","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\lib\\l10n\\generated\\app_localizations_sv.dart","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\lib\\l10n\\generated\\app_localizations.dart"]}
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
// @dart=3.3
|
|
||||||
// Flutter web bootstrap script for package:recipe_flutter/main.dart.
|
|
||||||
//
|
|
||||||
// Generated file. Do not edit.
|
|
||||||
//
|
|
||||||
|
|
||||||
// ignore_for_file: type=lint
|
|
||||||
|
|
||||||
import 'dart:ui_web' as ui_web;
|
|
||||||
import 'dart:async';
|
|
||||||
|
|
||||||
import 'package:recipe_flutter/main.dart' as entrypoint;
|
|
||||||
import 'web_plugin_registrant.dart' as pluginRegistrant;
|
|
||||||
|
|
||||||
typedef _UnaryFunction = dynamic Function(List<String> args);
|
|
||||||
typedef _NullaryFunction = dynamic Function();
|
|
||||||
|
|
||||||
Future<void> main() async {
|
|
||||||
await ui_web.bootstrapEngine(
|
|
||||||
runApp: () {
|
|
||||||
if (entrypoint.main is _UnaryFunction) {
|
|
||||||
return (entrypoint.main as _UnaryFunction)(<String>[]);
|
|
||||||
}
|
|
||||||
return (entrypoint.main as _NullaryFunction)();
|
|
||||||
},
|
|
||||||
registerPlugins: () {
|
|
||||||
pluginRegistrant.registerPlugins();
|
|
||||||
},
|
|
||||||
);
|
|
||||||
}
|
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
@@ -1 +0,0 @@
|
|||||||
["C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\lib\\l10n\\generated\\app_localizations_en.dart","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\lib\\l10n\\generated\\app_localizations_sv.dart","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\lib\\l10n\\generated\\app_localizations.dart","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\*\\index.html","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\flutter_bootstrap.js","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\main.dart.js","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\assets\\fonts\\MaterialIcons-Regular.otf","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\assets\\shaders\\ink_sparkle.frag","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\assets\\shaders\\stretch_effect.frag","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\assets\\AssetManifest.bin","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\assets\\AssetManifest.bin.json","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\assets\\FontManifest.json","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\assets\\NOTICES","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\flutter_service_worker.js"]
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\flutter_service_worker.js: C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\assets\\AssetManifest.bin C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\assets\\AssetManifest.bin.json C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\assets\\FontManifest.json C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\assets\\fonts\\MaterialIcons-Regular.otf C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\assets\\NOTICES C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\assets\\shaders\\ink_sparkle.frag C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\assets\\shaders\\stretch_effect.frag C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\canvaskit.js C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\canvaskit.js.symbols C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\canvaskit.wasm C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\chromium\\canvaskit.js C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\chromium\\canvaskit.js.symbols C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\chromium\\canvaskit.wasm C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\skwasm.js C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\skwasm.js.symbols C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\skwasm.wasm C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\skwasm_heavy.js C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\skwasm_heavy.js.symbols C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\skwasm_heavy.wasm C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\wimp.js C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\wimp.js.symbols C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\wimp.wasm C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\flutter.js C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\flutter_bootstrap.js C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\index.html C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\main.dart.js C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\version.json
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
{"inputs":["C:\\Users\\Nils-JohanGynther\\AppData\\Local\\Programs\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\web.dart"],"outputs":["C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\.dart_tool\\flutter_build\\f8c96b9ba70d270e1df926aec2a1e154\\main.dart"]}
|
|
||||||
-18
@@ -1,18 +0,0 @@
|
|||||||
// Flutter web plugin registrant file.
|
|
||||||
//
|
|
||||||
// Generated file. Do not edit.
|
|
||||||
//
|
|
||||||
|
|
||||||
// @dart = 2.13
|
|
||||||
// ignore_for_file: type=lint
|
|
||||||
|
|
||||||
import 'package:file_picker/src/platform/web/file_picker_web.dart';
|
|
||||||
import 'package:shared_preferences_web/shared_preferences_web.dart';
|
|
||||||
import 'package:flutter_web_plugins/flutter_web_plugins.dart';
|
|
||||||
|
|
||||||
void registerPlugins([final Registrar? pluginRegistrar]) {
|
|
||||||
final Registrar registrar = pluginRegistrar ?? webPluginRegistrar;
|
|
||||||
FilePickerWeb.registerWith(registrar);
|
|
||||||
SharedPreferencesPlugin.registerWith(registrar);
|
|
||||||
registrar.registerMessageHandler();
|
|
||||||
}
|
|
||||||
-1
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
|||||||
: C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\web\\index.html
|
|
||||||
-1
@@ -1 +0,0 @@
|
|||||||
{"inputs":["C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\assets\\AssetManifest.bin","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\assets\\AssetManifest.bin.json","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\assets\\FontManifest.json","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\assets\\fonts\\MaterialIcons-Regular.otf","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\assets\\NOTICES","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\assets\\shaders\\ink_sparkle.frag","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\assets\\shaders\\stretch_effect.frag","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\canvaskit.js","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\canvaskit.js.symbols","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\canvaskit.wasm","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\chromium\\canvaskit.js","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\chromium\\canvaskit.js.symbols","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\chromium\\canvaskit.wasm","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\skwasm.js","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\skwasm.js.symbols","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\skwasm.wasm","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\skwasm_heavy.js","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\skwasm_heavy.js.symbols","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\skwasm_heavy.wasm","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\wimp.js","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\wimp.js.symbols","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\canvaskit\\wimp.wasm","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\flutter.js","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\flutter_bootstrap.js","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\index.html","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\main.dart.js","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\version.json"],"outputs":["C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\flutter_service_worker.js"]}
|
|
||||||
-1
@@ -1 +0,0 @@
|
|||||||
{"inputs":["C:\\Users\\Nils-JohanGynther\\AppData\\Local\\Programs\\flutter\\bin\\cache\\engine.stamp"],"outputs":["C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\.dart_tool\\flutter_build\\f8c96b9ba70d270e1df926aec2a1e154\\flutter.js","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\.dart_tool\\flutter_build\\f8c96b9ba70d270e1df926aec2a1e154\\canvaskit\\canvaskit.js","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\.dart_tool\\flutter_build\\f8c96b9ba70d270e1df926aec2a1e154\\canvaskit\\canvaskit.js.symbols","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\.dart_tool\\flutter_build\\f8c96b9ba70d270e1df926aec2a1e154\\canvaskit\\canvaskit.wasm","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\.dart_tool\\flutter_build\\f8c96b9ba70d270e1df926aec2a1e154\\canvaskit\\chromium\\canvaskit.js","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\.dart_tool\\flutter_build\\f8c96b9ba70d270e1df926aec2a1e154\\canvaskit\\chromium\\canvaskit.js.symbols","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\.dart_tool\\flutter_build\\f8c96b9ba70d270e1df926aec2a1e154\\canvaskit\\chromium\\canvaskit.wasm","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\.dart_tool\\flutter_build\\f8c96b9ba70d270e1df926aec2a1e154\\canvaskit\\skwasm.js","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\.dart_tool\\flutter_build\\f8c96b9ba70d270e1df926aec2a1e154\\canvaskit\\skwasm.js.symbols","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\.dart_tool\\flutter_build\\f8c96b9ba70d270e1df926aec2a1e154\\canvaskit\\skwasm.wasm","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\.dart_tool\\flutter_build\\f8c96b9ba70d270e1df926aec2a1e154\\canvaskit\\skwasm_heavy.js","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\.dart_tool\\flutter_build\\f8c96b9ba70d270e1df926aec2a1e154\\canvaskit\\skwasm_heavy.js.symbols","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\.dart_tool\\flutter_build\\f8c96b9ba70d270e1df926aec2a1e154\\canvaskit\\skwasm_heavy.wasm","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\.dart_tool\\flutter_build\\f8c96b9ba70d270e1df926aec2a1e154\\canvaskit\\wimp.js","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\.dart_tool\\flutter_build\\f8c96b9ba70d270e1df926aec2a1e154\\canvaskit\\wimp.js.symbols","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\.dart_tool\\flutter_build\\f8c96b9ba70d270e1df926aec2a1e154\\canvaskit\\wimp.wasm"]}
|
|
||||||
-1
@@ -1 +0,0 @@
|
|||||||
{"inputs":["C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\web\\*\\index.html","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\web\\flutter_bootstrap.js","C:\\Users\\Nils-JohanGynther\\AppData\\Local\\Programs\\flutter\\bin\\cache\\engine.stamp"],"outputs":["C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\*\\index.html","C:\\Users\\Nils-JohanGynther\\dev\\recipe-app\\flutter\\build\\web\\flutter_bootstrap.js"],"buildKey":"[{\"compileTarget\":\"dart2js\",\"renderer\":\"canvaskit\",\"mainJsPath\":\"main.dart.js\"},{}]"}
|
|
||||||
@@ -1,646 +0,0 @@
|
|||||||
{
|
|
||||||
"configVersion": 2,
|
|
||||||
"packages": [
|
|
||||||
{
|
|
||||||
"name": "_fe_analyzer_shared",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/_fe_analyzer_shared-93.0.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.9"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "analyzer",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/analyzer-10.0.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.9"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "args",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.7.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "async",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.13.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "boolean_selector",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "build",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/build-4.0.5",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.7"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "build_config",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/build_config-1.3.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.7"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "build_daemon",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/build_daemon-4.1.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.7"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "build_runner",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner-2.14.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.7"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "built_collection",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/built_collection-5.1.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "built_value",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/built_value-8.12.5",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "characters",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.4.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "checked_yaml",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/checked_yaml-2.0.4",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.8"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "cli_config",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/cli_config-0.2.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "clock",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "code_builder",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/code_builder-4.11.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.7"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "collection",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.19.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "convert",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "coverage",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/coverage-1.15.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "cross_file",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/cross_file-0.3.5+2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.8"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "crypto",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.7",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "dart_style",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/dart_style-3.1.7",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.10"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "dbus",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/dbus-0.7.12",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.17"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "fake_async",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.3",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "ffi",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.2.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.7"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "file",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/file-7.0.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "file_picker",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/file_picker-11.0.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "fixnum",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/fixnum-1.1.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "flutter",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Programs/flutter/packages/flutter",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.9"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "flutter_lints",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-6.0.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.8"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "flutter_localizations",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Programs/flutter/packages/flutter_localizations",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.9"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "flutter_plugin_android_lifecycle",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_plugin_android_lifecycle-2.0.34",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.9"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "flutter_riverpod",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_riverpod-3.3.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.7"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "flutter_test",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Programs/flutter/packages/flutter_test",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.9"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "flutter_web_plugins",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Programs/flutter/packages/flutter_web_plugins",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.9"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "frontend_server_client",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/frontend_server_client-4.0.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "glob",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/glob-2.1.3",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "go_router",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/go_router-17.2.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.9"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "graphs",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/graphs-2.3.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "http",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/http-1.6.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "http_multi_server",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/http_multi_server-3.2.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "http_parser",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.1.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "intl",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.20.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "io",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/io-1.0.5",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "json_annotation",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/json_annotation-4.11.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.9"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "leak_tracker",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/leak_tracker-11.0.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "leak_tracker_flutter_testing",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/leak_tracker_flutter_testing-3.0.10",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "leak_tracker_testing",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/leak_tracker_testing-3.0.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "lints",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/lints-6.1.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.8"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "logging",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/logging-1.3.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "matcher",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.19",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.7"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "material_color_utilities",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.13.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "meta",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.17.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "mime",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/mime-2.0.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "mockito",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/mockito-5.6.4",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.7"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "node_preamble",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/node_preamble-2.0.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "package_config",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/package_config-2.2.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "path",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.9.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "path_provider_linux",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.2.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.19"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "path_provider_platform_interface",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.1.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "path_provider_windows",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.3.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "petitparser",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/petitparser-7.0.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.8"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "platform",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.6",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "plugin_platform_interface",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.8",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "pool",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/pool-1.5.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "pub_semver",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/pub_semver-2.2.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "pubspec_parse",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/pubspec_parse-1.5.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.6"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "riverpod",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/riverpod-3.2.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.7"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "shared_preferences",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences-2.5.5",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.9"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "shared_preferences_android",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_android-2.4.23",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.9"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "shared_preferences_foundation",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_foundation-2.5.6",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.9"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "shared_preferences_linux",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_linux-2.4.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "shared_preferences_platform_interface",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_platform_interface-2.4.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.9"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "shared_preferences_web",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_web-2.4.3",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "shared_preferences_windows",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_windows-2.4.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "shelf",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/shelf-1.4.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "shelf_packages_handler",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/shelf_packages_handler-3.0.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.17"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "shelf_static",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/shelf_static-1.1.3",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "shelf_web_socket",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/shelf_web_socket-3.0.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "sky_engine",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Programs/flutter/bin/cache/pkg/sky_engine",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.9"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "source_gen",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/source_gen-4.2.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.9"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "source_map_stack_trace",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/source_map_stack_trace-2.1.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "source_maps",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/source_maps-0.10.13",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "source_span",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.10.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "stack_trace",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.12.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "state_notifier",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/state_notifier-1.0.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "stream_channel",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.4",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "stream_transform",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/stream_transform-2.1.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "string_scanner",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.4.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "term_glyph",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "test",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/test-1.30.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.7"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "test_api",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.7.10",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.7"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "test_core",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/test_core-0.6.16",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.7"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "typed_data",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.4.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "vector_math",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.2.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "vm_service",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/vm_service-15.1.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "watcher",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/watcher-1.2.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "web",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/web-1.1.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "web_socket",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket-1.0.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "web_socket_channel",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket_channel-3.0.3",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "webkit_inspection_protocol",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/webkit_inspection_protocol-1.2.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "win32",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/win32-5.15.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.8"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "xdg_directories",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.1.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "xml",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/xml-6.6.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.8"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "yaml",
|
|
||||||
"rootUri": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache/hosted/pub.dev/yaml-3.1.3",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "recipe_flutter",
|
|
||||||
"rootUri": "../",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"generator": "pub",
|
|
||||||
"generatorVersion": "3.11.5",
|
|
||||||
"flutterRoot": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Programs/flutter",
|
|
||||||
"flutterVersion": "3.41.7",
|
|
||||||
"pubCache": "file:///C:/Users/Nils-JohanGynther/AppData/Local/Pub/Cache"
|
|
||||||
}
|
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1 +0,0 @@
|
|||||||
3.41.7
|
|
||||||
Reference in New Issue
Block a user