-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.73 KB
/
package.json
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
{
"name": "quicksettings-audio-devices-hider",
"version": "1.0.0",
"description": "A Gnome Shell extension that allows you to hide selected devices from the Quick Settings audio devices panel",
"main": "extension.js",
"scripts": {
"prepare": "husky install",
"clean": "rm -rf ./dist",
"build": "glib-compile-schemas resources/schemas/ && npm run clean && rollup -c",
"start:dev:wayland": "npm run build && dbus-run-session -- gnome-shell --nested --wayland",
"linkdist": "ln -s \"$PWD/dist\" \"$HOME/.local/share/gnome-shell/extensions/[email protected]\"",
"zip": "npm run build && rm -rf './dist/[email protected]' && cd ./dist && zip -qr '[email protected]' .",
"bump-version": "./scripts/bump-version.sh",
"log:extension": "journalctl -f -o cat GNOME_SHELL_EXTENSION_UUID=quicksettings-audio-devices-hider@marcinjahn.com",
"log:prefs": "journalctl -f -o cat /usr/bin/gjs"
},
"author": "Marcin Jahn <[email protected]>",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.4",
"husky": "^8.0.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"rollup": "^2.78.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-styles": "^4.0.0"
},
"dependencies": {
"@gi-types/adw1": "^1.1.1",
"@gi-types/gio2": "^2.72.1",
"@gi-types/glib2": "^2.72.1",
"@gi-types/gtk4": "^4.6.1",
"@gi-types/gvc1": "^1.0.1",
"typescript": "5.0.4"
}
}