-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
34 lines (34 loc) · 1.04 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
{
"name": "gnome-shell-extension-focusli",
"version": "45.0.0-beta5",
"description": "Simple Gnome Shell Hello World Extension example",
"type": "module",
"main": "dist/extension.js",
"private": true,
"sourceType": "module",
"scripts": {
"clear": "rm -rf dist",
"build:app": "./build.sh",
"build": "npm run clear && npm run build:app",
"validate": "tsc --noEmit"
},
"author": "Andres Reyes Monge <[email protected]>",
"license": "MIT",
"devDependencies": {
"adm-zip": "^0.5.10",
"esbuild": "^0.19.8",
"eslint": "^8.56.0",
"prettier": "^3.1.1",
"typescript": "^5.3.2"
},
"dependencies": {
"@girs/gjs": "^3.2.6",
"@girs/glib-2.0": "^2.78.0-3.2.6",
"@girs/gnome-shell": "^45.0.0-beta5",
"@girs/gobject-2.0": "^2.78.0-3.2.6",
"@girs/gst-1.0": "^1.23.0-3.2.6",
"@girs/gstaudio-1.0": "^1.0.0-3.2.6",
"@girs/shell-12": "^12.0.0-3.2.6",
"@girs/st-13": "^13.0.0-3.2.6"
}
}