V1 standalone complete

This commit is contained in:
Emma Short
2025-04-17 14:37:18 -06:00
commit 597c52eefe
5 changed files with 133 additions and 0 deletions

11
deno.json Normal file
View File

@@ -0,0 +1,11 @@
{
"tasks": {
"dev": "deno run -A --watch main.ts",
"compile": "deno compile -o compare-form-fields.exe --target x86_64-pc-windows-msvc -R ./main.ts",
"install": "deno install -fgq --import-map ./deno.json -n checkfields -R ./main.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@1",
"pdf-lib": "npm:pdf-lib@^1.17.1"
}
}