-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "gnome-gradienttopbar",
"title": "Gradient Top Bar",
"description": "Give the top bar a customizable gradient. Choose direction and colors, and optionally use a different style or keep the theme when windows are maximized.",
"version": "23",
"engines": {
"gnome": ">=49"
},
"shell-version": [
"49"
],
"uuid": "gradienttopbar@pshow.org",
"url": "https://github.com/petar-v/gradienttopbar",
"license": "WTFPL",
"author": "Petar Vasilev <petar@pshow.org>",
"type": "module",
"scripts": {
"nested-wayland": "dbus-run-session -- gnome-shell --nested --wayland",
"restart-gnome-shell": "DISPLAY=:0 XAUTHORITY=/var/run/gdm/auth-for-gdm-*/database gnome-shell --replace",
"pref-debug": "journalctl -f -o cat /usr/bin/gjs",
"open-prefs": "gnome-extensions prefs gradienttopbar@pshow.org",
"local-install": "yarn compile-schemas && yarn zip && gnome-extensions install gradienttopbar@pshow.org.shell-extension.zip --force && gnome-extensions enable gradienttopbar@pshow.org",
"zip-extension": "gnome-extensions pack src --force",
"compile-schemas": "glib-compile-schemas ./src/schemas/",
"zip": "cd src && zip -r ../gradienttopbar@pshow.org.shell-extension.zip .",
"prettify": "prettier --write 'src/**/*.{css}' && yarn lint --fix",
"lint": "eslint 'src/**/*.{js,json}'",
"precommit": "lint-staged",
"upload": "gnome-extensions upload --accept-tos"
},
"devDependencies": {
"eslint": "^9.37.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"prettier": "^3.6.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn prettify && yarn lint"
}
},
"lint-staged": {
"src/**/*.{js,css,json}": [
"yarn prettify",
"yarn lint",
"git add"
]
},
"packageManager": "yarn@4.0.1"
}