Files
tools/image-scale-cli/deno.json

29 lines
850 B
JSON

{
"name": "@hatter/image-scale-cli",
"version": "1.0.1",
"license": "MIT",
"exports": "./cli.ts",
"nodeModulesDir": "auto",
"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"
},
"allowScripts": {
"allow": [],
"deny": ["npm:sharp@0.33.5"]
}
}