forked from JoseExposito/touche
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.24 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.24 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
{
"name": "com.github.joseexposito.touche",
"version": "1.0.6",
"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 build --prefix=$(pwd)/build/install --buildtype=debug",
"meson:release": "meson build --prefix=/usr --buildtype=release",
"ninja:build": "ninja -C build",
"ninja:install": "ninja -C build install",
"gjs:run": "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.6.5",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.11.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-header": "^3.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.6.4",
"file-loader": "^6.1.1",
"schema-utils": "^1.0.0",
"webpack": "^5.1.0"
}
}