Files
everforest-resources/package.json
Ismo Vuorinen 11baabe545 feat: initial scaffold and generator
- Complete project structure with directories for all target platforms
- Template system for CLI tools with color placeholder replacement
- Working generator that processes templates for 6 theme variants
- GitHub workflows for build, snapshots, commitlint, and cli-verify
- Installer and verifier scripts for CLI tool deployment
- Comprehensive documentation and specifications
- Biome 2.x linting and formatting setup
- Husky git hooks for pre-commit validation
2025-09-05 23:06:12 +03:00

43 lines
1.2 KiB
JSON

{
"name": "everforest-resources",
"version": "0.1.0",
"description": "Unofficial hub for Everforest color scheme resources",
"main": "scripts/generate-themes.mjs",
"type": "module",
"scripts": {
"generate": "node scripts/generate-themes.mjs",
"validate": "node scripts/validate.mjs",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"format": "biome format . --write",
"ci": "npm run lint && npm run generate && npm run validate && npm run snapshots",
"snapshots": "playwright test",
"prepare": "husky install"
},
"keywords": [
"everforest",
"theme",
"color-scheme",
"terminal",
"editor",
"cli"
],
"author": "ivuorinen",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.2.3",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.0.0",
"@playwright/test": "^1.40.0",
"husky": "^9.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ivuorinen/everforest-resources.git"
},
"bugs": {
"url": "https://github.com/ivuorinen/everforest-resources/issues"
},
"homepage": "https://github.com/ivuorinen/everforest-resources#readme"
}