Files
gogh-engine/gogh-theme-engine/package.json
Aditya Gupta bcb48fd3a6 refactor: options handling and improve code readability
- Cleaned up import statements in options.ts for better organization.
- Enhanced the init function to load settings with improved formatting.
- Streamlined event listener attachments for buttons and inputs.
- Improved the rendering functions for color and semantic grids.
- Updated the parsePalette function in themeEngine.ts for better error handling and readability.
- Refactored deriveSemanticTheme to enhance clarity and maintainability.
- Adjusted tsconfig.json for better structure and readability.
- Updated vite.config.ts to improve build process and maintain consistency.
2026-03-03 23:11:33 +05:30

23 lines
718 B
JSON

{
"name": "gogh-theme-engine",
"version": "1.0.0",
"description": "Production-grade Chrome Extension that applies Gogh-style 16-color terminal palettes to web pages using perceptual color remapping (OKLCH).",
"private": true,
"type": "module",
"scripts": {
"dev": "vite build --watch --mode development",
"build": "tsc --noEmit && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.25",
"@types/chrome": "^0.0.268",
"@types/node": "^25.3.3",
"sass": "^1.77.0",
"typescript": "^5.4.5",
"vite": "^5.2.11"
},
"dependencies": {
"js-yaml": "^4.1.0"
}
}