mirror of
https://github.com/ivuorinen/everforest-resources.git
synced 2026-01-26 11:13:59 +00:00
- 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
43 lines
1.2 KiB
JSON
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"
|
|
}
|