forked from foss-desk/internet-speed-meter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.01 KB
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
{
"name": "speed-meter-gnome-extension",
"version": "1.4.1",
"description": "A lightweight GNOME Shell extension that displays real-time network upload/download speeds in the top panel.",
"type": "module",
"private": true,
"author": "Mojahid <mojahid@lunecode.com>",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/foss-desk/internet-speed-meter.git"
},
"bugs": {
"url": "https://github.com/foss-desk/internet-speed-meter/issues"
},
"homepage": "https://mojahid.lunecode.com",
"keywords": [
"gnome",
"gnome-shell",
"extension",
"network",
"speed-meter",
"internet",
"bandwidth",
"monitor"
],
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@girs/gjs": "latest",
"@girs/gnome-shell": "latest",
"typescript": "^5.4.0"
},
"scripts": {
"build": "tsc",
"lint": "tsc --noEmit",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"package": "npm run build && make pack"
}
}