{ "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 test:e2e", "test": "npm run test:e2e", "test:e2e": "npx --yes playwright install --with-deps && playwright test", "demo": "python3 -m http.server 3000", "demo:open": "npm run demo & sleep 2 && open http://localhost:3000/docs/examples/web-demo.html", "install:themes": "./install.sh", "install:dry": "./install.sh --dry-run", "build": "npm run generate && npm run validate", "dev": "npm run generate && npm run demo", "prepare": "husky install", "release": "npm run ci && git tag v$(node -p \"require('./package.json').version\")", "stats": "echo 'Generated files:' && find . -name '*-dark-*' -o -name '*-light-*' | wc -l && echo 'Templates:' && find . -name 'template.*' | wc -l" }, "keywords": [ "everforest", "theme", "color-scheme", "terminal", "editor", "cli", "colorscheme", "dark-theme", "light-theme", "developer-tools" ], "author": { "name": "ivuorinen", "url": "https://github.com/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", "engines": { "node": ">=18.0.0", "npm": ">=8.0.0" }, "files": [ "terminals/", "editors/", "cli/", "web/", "scripts/", "palettes/", "docs/", "install.sh", "README.md", "LICENSE" ] }