Files
everforest-resources/package.json
Ismo Vuorinen 88f91f420c feat: move verify script to project root
- relocate verify/verify.sh to ./verify.sh for easier access
- update all documentation and build script references
- add npm run verify script for consistency
- simplify verification command execution
2025-09-09 00:26:35 +03:00

77 lines
2.3 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 test:e2e",
"test": "npm run test:e2e",
"test:e2e": "npx --yes playwright install --with-deps && playwright test",
"snapshots": "playwright test --update-snapshots",
"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",
"verify": "./verify.sh",
"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"
]
}