-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
60 lines (60 loc) · 2.33 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "com.github.joseexposito.touche",
"version": "4",
"description": "Easily configure your touchpad and touchscreen multi-touch gestures using Touchégg with this GTK graphical user interface",
"author": "José Expósito",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/JoseExposito/touche#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/JoseExposito/touche.git"
},
"bugs": {
"url": "https://github.com/JoseExposito/touche/issues"
},
"keywords": [
"touchegg",
"linux",
"multi-touch",
"touchpad",
"libinput",
"gjs",
"gtk"
],
"main": "src/index.js",
"scripts": {
"start": "npm run meson:debug && npm run ninja:build && npm run ninja:install && npm run gjs:run",
"build": "npm run clean && npm run meson:release && npm run ninja:build && npm run ninja:install",
"flatpak": "npm run clean && flatpak-builder --user --install build com.github.joseexposito.touche.yml",
"archive": "npm install && tar --exclude='.flatpak-builder' --exclude='.git' --exclude='build' --exclude='com.github.joseexposito.touche.yml' -czf ../archive.tar.gz .",
"clean": "rm -fr build",
"meson:debug": "meson setup build --prefix=$(pwd)/build/install --buildtype=debug",
"meson:release": "meson setup build --prefix=/usr --buildtype=release",
"ninja:build": "ninja -C build",
"ninja:install": "ninja -C build install",
"gjs:run": "LD_LIBRARY_PATH=$(pwd)/build/install/lib64 GI_TYPELIB_PATH=$(pwd)/build/install/lib64/girepository-1.0 gjs ./build/install/bin/com.github.joseexposito.touche",
"translate": "node bundle/scripts/translate.js",
"lint": "eslint --ext .js,.mjs src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"core-js": "^3.26.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"babel-loader": "^9.1.0",
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.6.2",
"schema-utils": "^4.0.0",
"webpack": "^5.74.0"
}
}