* Eslint updates * linter fixes * Type fixes * More type fixes * Fix isvis * More type fixes * Type Fixes * Consolidate logic to manage options * Linter fixes * Package lock update * Update configs * Version checker * Debug pipeline * Package lock update * Update ci * Strict check * Revert ci * Eslint * Remove rule since it causes issues in CI * Actual matugen fix
30 lines
882 B
JSON
30 lines
882 B
JSON
{
|
|
"name": "hyprpanel",
|
|
"version": "1.0.0",
|
|
"description": "A customizable panel built for Hyprland.",
|
|
"main": "app.ts",
|
|
"scripts": {
|
|
"lint": "eslint --config .eslintrc.json .",
|
|
"lint:fix": "eslint --config .eslintrc.json . --fix",
|
|
"format": "prettier --write 'modules/**/*.ts'"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"astal": "/usr/share/astal/gjs"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.5.4",
|
|
"@typescript-eslint/eslint-plugin": "^8.5.0",
|
|
"@typescript-eslint/parser": "^8.5.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-import": "^2.30.0",
|
|
"eslint-plugin-prettier": "^5.2.1",
|
|
"prettier": "^3.3.3",
|
|
"tsconfig-paths": "^4.2.0",
|
|
"typescript": "5.7.3"
|
|
}
|
|
}
|