forked from EuCaue/gnome-shell-extension-quick-lofi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.89 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.89 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "quick-lofi",
"version": "1.6.0",
"description": "Relax to lo-fi tunes with just a click.",
"type": "module",
"private": true,
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && npm run build:schemas && npm run build:source",
"build:source": "node build.js",
"build:schemas": "glib-compile-schemas schemas/",
"build:dev": "NODE_ENV=development npm run build",
"build:prod": "NODE_ENV=production npm run build",
"install": "gnome-extensions install --force quick-lofi@eucaue.zip",
"install:dev": "npm run build:dev && npm run install",
"install:prod": "npm run build:prod && npm run install",
"run:session": "env MUTTER_DEBUG_DUMMY_MODE_SPECS=1600x900 dbus-run-session -- gnome-shell --devkit --wayland",
"run:dev": "npm run install:dev && npm run run:session",
"run:prod": "npm run install:prod",
"clean": "rm -rf dist",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"check": "npm run lint || true && npm run typecheck",
"typecheck": "tsc --noEmit",
"release": "npm run check && npm run build:prod && npm run install:prod",
"radios": "bash ./test-radios.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eucaue/gnome-shell-extension-quick-lofi.git"
},
"author": "Cauê Souza <souzacaue@proton.me>",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/eucaue/gnome-shell-extension-quick-lofi/issues"
},
"homepage": "https://github.com/eucaue/gnome-shell-extension-quick-lofi#readme",
"sideEffects": false,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"adm-zip": "^0.5.16",
"esbuild": "^0.19.12",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.6",
"prettier": "^3.5.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@girs/clutter-17": "^17.0.0-4.0.0-beta.38",
"@girs/gda-5.0": "5.0.0-4.0.0-beta.38",
"@girs/gdk-4.0": "4.0.0-4.0.0-beta.38",
"@girs/gdkpixbuf-2.0": "2.0.0-4.0.0-beta.38",
"@girs/gio-2.0": "2.86.0-4.0.0-beta.38",
"@girs/gjs": "4.0.0-beta.38",
"@girs/glib-2.0": "2.86.0-4.0.0-beta.38",
"@girs/gnome-shell": "49.1.0",
"@girs/gobject-2.0": "2.86.0-4.0.0-beta.38",
"@girs/graphene-1.0": "1.0.0-4.0.0-beta.38",
"@girs/gsound-1.0": "1.0.0-4.0.0-beta.38",
"@girs/gtk-4.0": "4.20.1-4.0.0-beta.38",
"@girs/meta-17": "^17.0.0-4.0.0-beta.38",
"@girs/pango-1.0": "1.57.0-4.0.0-beta.38",
"@girs/shell-17": "^17.0.0-4.0.0-beta.38",
"@girs/soup-3.0": "3.6.5-4.0.0-beta.38",
"@girs/st-17": "17.0.0-4.0.0-beta.38",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.2",
"@typescript/native-preview": "^7.0.0-dev.20251223.1",
"rollup": "^4.40.0",
"tslib": "^2.8.1"
}
}