24 lines
747 B
JSON
24 lines
747 B
JSON
{
|
|
"name": "@hatter/image-scale-cli",
|
|
"version": "1.0.0",
|
|
"license": "MIT",
|
|
"exports": "./cli.ts",
|
|
"tasks": {
|
|
"start": "deno run --allow-read --allow-write --allow-env --allow-ffi cli.ts",
|
|
"test": "deno test --allow-read --allow-write --allow-ffi --allow-run --allow-env --no-check",
|
|
"dev": "deno run --allow-read --allow-write --watch cli.ts",
|
|
"gen:test-images": "deno run --allow-read --allow-write --allow-env scripts/generate-test-images.ts"
|
|
},
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"lib": ["deno.window"]
|
|
},
|
|
"imports": {
|
|
"@std/path": "jsr:@std/path@1",
|
|
"@std/fs": "jsr:@std/fs@1",
|
|
"@std/cli": "jsr:@std/cli@1",
|
|
"@std/assert": "jsr:@std/assert@1",
|
|
"sharp": "npm:sharp@^0.33.0"
|
|
}
|
|
}
|