-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "floating-scroll",
"version": "0.1.0",
"description": "Floating Scroll is a GNOME Shell extension that implements a scrollable floating window manager",
"private": true,
"scripts": {
"build": "./scripts/build.sh",
"build:dev": "./scripts/build.sh --unsafe-reload",
"build:install": "./scripts/build.sh --install",
"check:lint": "eslint src/ tests/",
"check:format": "prettier -c src/ tests/",
"test": "vitest",
"translations:update": "./scripts/update-translations.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Leleat/floating-scroll.git"
},
"bugs": {
"url": "https://github.com/Leleat/floating-scroll/issues"
},
"homepage": "https://github.com/Leleat/floating-scroll",
"type": "module",
"keywords": [
"GNOME",
"GNOME Shell",
"GJS",
"Extension"
],
"author": "Anh Le",
"license": "GPL-2.0-or-later",
"devDependencies": {
"@eslint/js": "^9.18.0",
"@girs/gjs": "^4.0.0-beta.19",
"@girs/gnome-shell": "^47.0.0",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.4.2",
"vitest": "^2.1.8"
}
}