-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 937 Bytes
/
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
{
"name": "gnome-shell-extension-mumble-ping",
"version": "1.0.0",
"description": "Displays the status of a mumble server",
"main": "extension.js",
"private": true,
"module": "extension.js",
"type": "module",
"sideEffects": false,
"scripts": {
"format": "prettier -w ./*.js ./*.ts && eslint . --fix",
"lint": "eslint *.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"gnome-shell",
"extension",
"GJS"
],
"author": "Maximilian Weiler (https://github.com/maweil)",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.57.0",
"eslint-plugin-jsdoc": "^48.2.3",
"prettier": "^3.0.3",
"prettier-eslint": "16.3.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@girs/gjs": "^3.3.0",
"@girs/gnome-shell": "^46.0.0-beta6"
}
}