fix: local ASCII Art inclusion

This commit is contained in:
2025-05-20 13:45:27 -06:00
parent 90f1547e02
commit cdeef54f68
3 changed files with 30 additions and 30 deletions

View File

@@ -1,10 +1,10 @@
{
"name": "@bearmetal/pdf-tools",
"version": "1.0.1",
"version": "1.0.2",
"license": "GPL 3.0",
"tasks": {
"dev": "deno run -A --env-file=.env main.ts",
"compile": "deno compile -o compare-form-fields.exe --target x86_64-pc-windows-msvc -R ./main.ts",
"compile": "deno compile -o pdf-tools.exe --target x86_64-pc-windows-msvc --include ./asciiart.txt -A ./main.ts",
"install": "deno install -fgq --import-map ./deno.json -n checkfields -R ./main.ts",
"debug": "deno run -A --env-file=.env --inspect-wait --watch main.ts"
},
@@ -12,7 +12,8 @@
"@std/assert": "jsr:@std/assert@1",
"@std/path": "jsr:@std/path@^1.0.9",
"pdf-lib": "npm:pdf-lib@^1.17.1",
"util/": "./util/"
"util/": "./util/",
"@/": "./"
},
"exports": {
".": "./main.ts"