-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.32 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
42
43
44
45
46
47
{
"name": "no-titlebar-when-maximized",
"description": "Hides the classic title bar of maximized X.Org windows",
"private": true,
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"build": "gnome-extensions pack --force .",
"install-local": "gnome-extensions install --force ./no-titlebar-when-maximized@alec.ninja.shell-extension.zip",
"uninstall": "gnome-extensions uninstall no-titlebar-when-maximized@alec.ninja"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alecdotninja/no-titlebar-when-maximized.git"
},
"author": "Alec Larsen <hello@alec.ninja>",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/alecdotninja/no-titlebar-when-maximized/issues"
},
"homepage": "https://github.com/alecdotninja/no-titlebar-when-maximized#readme",
"devDependencies": {
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "2.5.0"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"prettier"
],
"globals": {
"global": "readonly",
"imports": "readonly",
"log": "readonly",
"logError": "readonly"
},
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"es6": true,
"node": false
}
}
}