-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.88 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": "gnome-do-not-disturb-while-screen-sharing-or-recording-extension",
"version": "1.0.0",
"description": "A Gnome Shell extension that crosses out events that already happened",
"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": "glib-compile-schemas resources/schemas/ && 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/do-not-disturb-while-screen-sharing-or-recording@marcinjahn.com.zip' && cd ./dist && zip -qr 'do-not-disturb-while-screen-sharing-or-recording@marcinjahn.com.zip' .",
"bump-version": "./scripts/bump-version.sh",
"log:extension": "journalctl -f -o cat GNOME_SHELL_EXTENSION_UUID=do-not-disturb-while-screen-sharing-or-recording@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",
"husky": "^8.0.0",
"eslint": "^8.43.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": {
"@gi-types/meta10": "^10.0.1",
"@gi-types/gvc1": "^1.0.1",
"typescript": "5.0.4"
}
}