feature: file uploading
This commit is contained in:
parent
a144c88c17
commit
ffe0678e5b
8 changed files with 388 additions and 13 deletions
29
deno.lock
generated
29
deno.lock
generated
|
@ -3,11 +3,10 @@
|
|||
"specifiers": {
|
||||
"jsr:@andyburke/fsdb@^1.0.2": "1.0.2",
|
||||
"jsr:@andyburke/lurid@0.2": "0.2.0",
|
||||
"jsr:@andyburke/serverus@~0.9.8": "0.9.8",
|
||||
"jsr:@andyburke/serverus@~0.12.2": "0.12.2",
|
||||
"jsr:@da/bcrypt@*": "1.0.1",
|
||||
"jsr:@da/bcrypt@^1.0.1": "1.0.1",
|
||||
"jsr:@std/assert@^1.0.13": "1.0.13",
|
||||
"jsr:@std/async@^1.0.13": "1.0.13",
|
||||
"jsr:@std/cli@^1.0.19": "1.0.21",
|
||||
"jsr:@std/cli@^1.0.20": "1.0.21",
|
||||
"jsr:@std/cli@^1.0.21": "1.0.21",
|
||||
|
@ -24,7 +23,8 @@
|
|||
"jsr:@std/net@^1.0.4": "1.0.4",
|
||||
"jsr:@std/path@^1.1.0": "1.1.1",
|
||||
"jsr:@std/path@^1.1.1": "1.1.1",
|
||||
"jsr:@std/streams@^1.0.10": "1.0.10"
|
||||
"jsr:@std/streams@^1.0.10": "1.0.10",
|
||||
"npm:@types/node@*": "22.15.15"
|
||||
},
|
||||
"jsr": {
|
||||
"@andyburke/fsdb@1.0.2": {
|
||||
|
@ -41,11 +41,9 @@
|
|||
"jsr:@std/cli@^1.0.19"
|
||||
]
|
||||
},
|
||||
"@andyburke/serverus@0.9.8": {
|
||||
"integrity": "6d806a5fd50b67edfaeee12f1a59bfc3a0cb22d9bcffba0910bf5b56d0473059",
|
||||
"@andyburke/serverus@0.12.2": {
|
||||
"integrity": "17cf6d7cb58857c4bc34ee96aa718c05edf0fd4fe159afc5890253e50bd99c3a",
|
||||
"dependencies": [
|
||||
"jsr:@andyburke/serverus",
|
||||
"jsr:@std/async",
|
||||
"jsr:@std/cli@^1.0.21",
|
||||
"jsr:@std/fmt@^1.0.6",
|
||||
"jsr:@std/fs@^1.0.19",
|
||||
|
@ -63,9 +61,6 @@
|
|||
"jsr:@std/internal@^1.0.6"
|
||||
]
|
||||
},
|
||||
"@std/async@1.0.13": {
|
||||
"integrity": "1d76ca5d324aef249908f7f7fe0d39aaf53198e5420604a59ab5c035adc97c96"
|
||||
},
|
||||
"@std/cli@1.0.21": {
|
||||
"integrity": "cd25b050bdf6282e321854e3822bee624f07aca7636a3a76d95f77a3a919ca2a"
|
||||
},
|
||||
|
@ -118,6 +113,17 @@
|
|||
"integrity": "75c0b1431873cd0d8b3d679015220204d36d3c7420d93b60acfc379eb0dc30af"
|
||||
}
|
||||
},
|
||||
"npm": {
|
||||
"@types/node@22.15.15": {
|
||||
"integrity": "sha512-R5muMcZob3/Jjchn5LcO8jdKwSCbzqmPB6ruBxMcf9kbxtniZHP327s6C37iOfuw8mbKK3cAQa7sEl7afLrQ8A==",
|
||||
"dependencies": [
|
||||
"undici-types"
|
||||
]
|
||||
},
|
||||
"undici-types@6.21.0": {
|
||||
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="
|
||||
}
|
||||
},
|
||||
"redirects": {
|
||||
"https://jsr.io/@da/bcrypt/1.0.1/src/worker.ts": "https://jsr.io/@da/bcrypt/1.0.1/"
|
||||
},
|
||||
|
@ -125,10 +131,11 @@
|
|||
"dependencies": [
|
||||
"jsr:@andyburke/fsdb@^1.0.2",
|
||||
"jsr:@andyburke/lurid@0.2",
|
||||
"jsr:@andyburke/serverus@~0.9.8",
|
||||
"jsr:@andyburke/serverus@~0.12.2",
|
||||
"jsr:@da/bcrypt@^1.0.1",
|
||||
"jsr:@std/assert@^1.0.13",
|
||||
"jsr:@std/encoding@^1.0.10",
|
||||
"jsr:@std/fs@^1.0.19",
|
||||
"jsr:@std/http@^1.0.20",
|
||||
"jsr:@std/path@^1.1.1"
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue