alacritty-theme-switch
Version:
CLI for Alacritty color theme and configuration switching.
73 lines (72 loc) • 1.8 kB
JSON
{
"name": "alacritty-theme-switch",
"version": "1.2.0",
"description": "CLI for Alacritty color theme and configuration switching.",
"main": "./src/index.js",
"bin": {
"alacritty-theme-switch": "./src/cli.js",
"ats": "./src/cli.js"
},
"author": {
"name": "Michael Tichopád",
"email": "michael@tichopad.dev"
},
"contributors": [
{
"name": "Guilherme Henrique",
"email": "gjhenrique@gmail.com"
},
{
"name": "Knosence",
"email": "nadario.seays@gmail.com"
}
],
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tichopad/alacritty-theme-switch.git"
},
"bugs": {
"url": "https://github.com/tichopad/alacritty-theme-switch/issues"
},
"homepage": "https://github.com/tichopad/alacritty-theme-switch#readme",
"license": "MIT",
"keywords": [
"cli",
"command",
"console",
"terminal",
"alacritty",
"theme",
"configuration"
],
"scripts": {
"start": "run-p fix:* \"test:unit -- --watch\"",
"test": "run-p \"format -- --check\" lint test:unit",
"test:unit": "jest",
"fix:format": "npm run format -- --write",
"fix:lint": "npm run lint -- --fix",
"format": "prettier \"src/**/*.js\" \"__tests__/**/*.js\"",
"lint": "eslint \"src/**/*.js\" \"__tests__/**/*.js\"",
"precommit": "run-p fix:* test:unit",
"prepare": "husky install"
},
"dependencies": {
"deepmerge": "^4.2.2",
"fs-extra": "^10.0.0",
"inquirer": "^8.0.0",
"js-yaml": "^4.0.0",
"klaw-sync": "^6.0.0",
"meow": "^9.0.0"
},
"devDependencies": {
"eslint": "^8.0.1",
"husky": "^7.0.1",
"jest": "^27.0.5",
"mock-fs": "^5.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5"
}
}