-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.65 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
{
"name": "touchpad-gesture-customization",
"version": "1.0.0",
"description": "Enable touchpad gestures customization in GNOME using Wayland",
"type": "module",
"private": true,
"main": "extension.js",
"repository": {
"type": "git",
"url": "https://github.com/HieuTNg/touchpad-gesture-customization"
},
"author": "Hieu Trung Nguyen <hieutng@coooolapps.com> (https://coooolapps.com/)",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/HieuTNg/touchpad-gesture-customization/issues"
},
"homepage": "https://github.com/HieuTNg/touchpad-gesture-customization",
"sideEffects": false,
"scripts": {
"clean-dev": "rm -rf build node_modules",
"lint:package": "eslint build --fix",
"format:build": "npx prettier build --write",
"clean": "rm -rf build && mkdir build",
"lint:extension": "eslint extension --fix",
"format:extension": "npx prettier extension --write",
"transpile": "npm run lint:extension && npm run format:extension && tsc",
"build": "npm run clean && npm run transpile && npm run lint:package && npm run format:build",
"pack": "npm run build && make pack",
"update": "npm run pack && make update"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@stylistic/eslint-plugin": "^3.1.0",
"eslint": "^9.17.0",
"eslint-plugin-jsdoc": "^50.6.1",
"prettier": "3.5.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
},
"dependencies": {
"@girs/gjs": "^4.0.0-beta.38",
"@girs/gnome-shell": "^50.0.0"
}
}