-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 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
{
"name": "peek-top-bar-on-fullscreen",
"version": "1.0.0",
"description": "A Gnome Shell extension that allows you to hide selected devices from the Quick Settings audio devices panel",
"type": "module",
"scripts": {
"prepare": "husky install",
"clean": "rm -rf ./dist",
"generate-gi-ts": "gi-ts generate && find ./@gi-ts -type f -exec sed -i '1i// @ts-nocheck' {} \\;",
"build": "npm run clean && rollup -c && npm run lint-dist",
"lint-dist": "eslint -c .eslintrc.dist.json --fix dist/*.js",
"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=peek-top-bar-on-fullscreen@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",
"@gi.ts/cli": "^1.5.10",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.0",
"@rollup/plugin-typescript": "^11.1.2",
"eslint": "^8.43.0",
"husky": "^8.0.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"rollup": "^3.28",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.4.0"
},
"dependencies": {
"@girs/meta-14": "14.0.0-3.3.0",
"typescript": "5.0.4"
}
}