Cleaned up Deno implementation

This commit is contained in:
Christopher Sanden
2026-03-18 17:25:17 +01:00
parent 4b7d87ab57
commit 5210d5ae56
4 changed files with 342 additions and 23 deletions

View File

@@ -15,6 +15,7 @@
"@react-navigation/native": "^7.1.28",
"@supabase/supabase-js": "^2.98.0",
"async-storage": "^0.1.0",
"deno": "^2.7.6",
"expo": "~54.0.33",
"expo-blur": "~15.0.8",
"expo-constants": "~18.0.13",
@@ -1556,6 +1557,84 @@
"devOptional": true,
"license": "MIT"
},
"node_modules/@deno/darwin-arm64": {
"version": "2.7.6",
"resolved": "https://registry.npmjs.org/@deno/darwin-arm64/-/darwin-arm64-2.7.6.tgz",
"integrity": "sha512-PRRzLK3AfCYthVUEy8/QcCwbWOLt8yt9KLQcnPqi+BoxnRsWHdbDwoJ9xwSigHtD2wOvay98/wU0C+NOiZ8W0g==",
"cpu": [
"arm64"
],
"license": "MIT",
"optional": true,
"os": [
"darwin"
]
},
"node_modules/@deno/darwin-x64": {
"version": "2.7.6",
"resolved": "https://registry.npmjs.org/@deno/darwin-x64/-/darwin-x64-2.7.6.tgz",
"integrity": "sha512-xy+jkR5HdGBjdjvRr1EQT62YSrdnYYn6i4k2Jw0hqNIwp2+IyiEbmD3wQ/uQZTt+mMkl+cq2adYuDg4lmGA9vw==",
"cpu": [
"x64"
],
"license": "MIT",
"optional": true,
"os": [
"darwin"
]
},
"node_modules/@deno/linux-arm64-glibc": {
"version": "2.7.6",
"resolved": "https://registry.npmjs.org/@deno/linux-arm64-glibc/-/linux-arm64-glibc-2.7.6.tgz",
"integrity": "sha512-bMe/5MVeQqzEFleC7oCCxyftUuK/5IM8F66txs33dL+a101QUn3cCSZnor5Ckcf0tY42crFMJ7DiCWuJCP/rtQ==",
"cpu": [
"arm64"
],
"license": "MIT",
"optional": true,
"os": [
"linux"
]
},
"node_modules/@deno/linux-x64-glibc": {
"version": "2.7.6",
"resolved": "https://registry.npmjs.org/@deno/linux-x64-glibc/-/linux-x64-glibc-2.7.6.tgz",
"integrity": "sha512-pyKN9G7qFJWLE2pE3G5Hb05b1ZcjakK3af5U7bk7QQRlKTZGygUTzVlOyzkFh827NpJa3roPaYXsMVZgcml8dw==",
"cpu": [
"x64"
],
"license": "MIT",
"optional": true,
"os": [
"linux"
]
},
"node_modules/@deno/win32-arm64": {
"version": "2.7.6",
"resolved": "https://registry.npmjs.org/@deno/win32-arm64/-/win32-arm64-2.7.6.tgz",
"integrity": "sha512-dG29tSiV4gKC9V1+55RovzMfdgKKeVrQYOPUL1xREMWG2+ZacQ++LjwP/RCGyhZXOwvVBLDJw3AK9GXTLBp6Jw==",
"cpu": [
"arm64"
],
"license": "MIT",
"optional": true,
"os": [
"win32"
]
},
"node_modules/@deno/win32-x64": {
"version": "2.7.6",
"resolved": "https://registry.npmjs.org/@deno/win32-x64/-/win32-x64-2.7.6.tgz",
"integrity": "sha512-m6N4rrJUjLyVuZ9YjsdiSHNldbljq9z5+LlTajIHs+JzDaWbs+mXIfhLB4y9cGB73R1msCrE93Q6acnoFlfEFw==",
"cpu": [
"x64"
],
"license": "MIT",
"optional": true,
"os": [
"win32"
]
},
"node_modules/@egjs/hammerjs": {
"version": "2.0.17",
"resolved": "https://registry.npmjs.org/@egjs/hammerjs/-/hammerjs-2.0.17.tgz",
@@ -6308,6 +6387,24 @@
"node": ">=0.4.0"
}
},
"node_modules/deno": {
"version": "2.7.6",
"resolved": "https://registry.npmjs.org/deno/-/deno-2.7.6.tgz",
"integrity": "sha512-c1f/1YbZjlIoH+xqRQfz4ir/HcB0h4VBG8OJrM8EANIQxnW+izAylNKzK7jShgNeZtFXkZujZETxa+Rh954xkA==",
"hasInstallScript": true,
"license": "MIT",
"bin": {
"deno": "bin.cjs"
},
"optionalDependencies": {
"@deno/darwin-arm64": "2.7.6",
"@deno/darwin-x64": "2.7.6",
"@deno/linux-arm64-glibc": "2.7.6",
"@deno/linux-x64-glibc": "2.7.6",
"@deno/win32-arm64": "2.7.6",
"@deno/win32-x64": "2.7.6"
}
},
"node_modules/depd": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",