Generic Commit; Most likely a fix or small feature

This commit is contained in:
Darius
2025-11-21 18:37:35 +01:00
parent 824bb7ece2
commit dafee157ed
3 changed files with 36 additions and 2 deletions

33
package-lock.json generated
View File

@@ -12,6 +12,7 @@
"@astrojs/check": "^0.9.5", "@astrojs/check": "^0.9.5",
"@astrojs/node": "^9.5.0", "@astrojs/node": "^9.5.0",
"@biomejs/biome": "^2.3.6", "@biomejs/biome": "^2.3.6",
"@zxing/library": "^0.21.3",
"astro": "^5.16.0", "astro": "^5.16.0",
"axios": "^1.13.2", "axios": "^1.13.2",
"typescript": "^5.9.3" "typescript": "^5.9.3"
@@ -1933,6 +1934,28 @@
"integrity": "sha512-KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ==", "integrity": "sha512-KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ==",
"license": "MIT" "license": "MIT"
}, },
"node_modules/@zxing/library": {
"version": "0.21.3",
"resolved": "https://registry.npmjs.org/@zxing/library/-/library-0.21.3.tgz",
"integrity": "sha512-hZHqFe2JyH/ZxviJZosZjV+2s6EDSY0O24R+FQmlWZBZXP9IqMo7S3nb3+2LBWxodJQkSurdQGnqE7KXqrYgow==",
"license": "MIT",
"dependencies": {
"ts-custom-error": "^3.2.1"
},
"engines": {
"node": ">= 10.4.0"
},
"optionalDependencies": {
"@zxing/text-encoding": "~0.9.0"
}
},
"node_modules/@zxing/text-encoding": {
"version": "0.9.0",
"resolved": "https://registry.npmjs.org/@zxing/text-encoding/-/text-encoding-0.9.0.tgz",
"integrity": "sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA==",
"license": "(Unlicense OR Apache-2.0)",
"optional": true
},
"node_modules/acorn": { "node_modules/acorn": {
"version": "8.15.0", "version": "8.15.0",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
@@ -5014,6 +5037,7 @@
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.6.2.tgz", "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.6.2.tgz",
"integrity": "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==", "integrity": "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==",
"license": "MIT", "license": "MIT",
"peer": true,
"bin": { "bin": {
"prettier": "bin/prettier.cjs" "prettier": "bin/prettier.cjs"
}, },
@@ -5778,6 +5802,15 @@
"url": "https://github.com/sponsors/wooorm" "url": "https://github.com/sponsors/wooorm"
} }
}, },
"node_modules/ts-custom-error": {
"version": "3.3.1",
"resolved": "https://registry.npmjs.org/ts-custom-error/-/ts-custom-error-3.3.1.tgz",
"integrity": "sha512-5OX1tzOjxWEgsr/YEUWSuPrQ00deKLh6D7OTWcvNHm12/7QPyRh8SYpyWvA4IZv8H/+GQWQEh/kwo95Q9OVW1A==",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/tsconfck": { "node_modules/tsconfck": {
"version": "3.1.6", "version": "3.1.6",
"resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-3.1.6.tgz", "resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-3.1.6.tgz",

View File

@@ -17,6 +17,7 @@
"@astrojs/check": "^0.9.5", "@astrojs/check": "^0.9.5",
"@astrojs/node": "^9.5.0", "@astrojs/node": "^9.5.0",
"@biomejs/biome": "^2.3.6", "@biomejs/biome": "^2.3.6",
"@zxing/library": "^0.21.3",
"astro": "^5.16.0", "astro": "^5.16.0",
"axios": "^1.13.2", "axios": "^1.13.2",
"typescript": "^5.9.3" "typescript": "^5.9.3"

View File

@@ -10,9 +10,9 @@ import Scanner from "../components/Scanner.astro";
<title>DPU Food Scanner</title> <title>DPU Food Scanner</title>
<meta <meta
name="description" name="description"
content="Scan products and check if they are vegan and suitable for weight loss" content="Scan food products"
/> />
<script src="https://unpkg.com/@zxing/library@latest"></script> <script type="text/javascript" src="https://unpkg.com/@zxing/library@latest/umd/index.min.js"></script>
</head> </head>
<body> <body>
<Scanner /> <Scanner />