alacritty-theme-switch
Version:
CLI utility for switching Alacritty color themes
28 lines (27 loc) • 1.3 kB
JavaScript
export default {
"name": "@tichopad/alacritty-theme-switch",
"version": "3.0.1",
"license": "MIT",
"tasks": {
"preflight": "deno fmt && deno lint && deno check && deno task test",
"check": "deno fmt --check && deno lint && deno check",
"dev": "deno run --allow-write --allow-env --allow-read --allow-net --watch ./src/main.ts",
"run": "deno run --allow-write --allow-env --allow-read --allow-net ./src/main.ts",
"test": "deno test --allow-write --allow-env --allow-read ./tests/unit",
"build-npm": "deno run --allow-read --allow-write --allow-net --allow-env --allow-run scripts/build-npm.ts",
"build-binary": "deno compile --allow-write --allow-env --allow-read --allow-net --output=bin/ats ./src/main.ts"
},
"exports": "./src/main.ts",
"imports": {
"@deno/dnt": "jsr:@tichopad/dnt@1.0.1",
"@inquirer/search": "npm:@inquirer/search@4.1.0",
"@std/assert": "jsr:@std/assert@1.0.16",
"@std/cli": "jsr:@std/cli@1.0.25",
"@std/fs": "jsr:@std/fs@1.0.21",
"@std/path": "jsr:@std/path@1.1.4",
"@std/testing": "jsr:@std/testing@1.0.16",
"@std/toml": "jsr:@std/toml@1.0.11",
"neverthrow": "npm:neverthrow@8.2.0",
"p-map": "npm:p-map@7.0.4"
}
};