-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
52 lines (52 loc) · 1.81 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
{
"name": "gnome-gestures",
"version": "1.0.0",
"description": "Touchpad Gesture Improvements",
"main": "extension.js",
"type": "module",
"scripts": {
"generate-bindings": "sh scripts/generate-gi-bindings.sh",
"test": "echo \"Error: no test specified\" && exit 1",
"build:transpile": "tsc scripts/transpile.ts --outDir build --allowSyntheticDefaultImports --sourceMap --target esnext --module esnext --moduleResolution node",
"lint:extension": "eslint extension scripts tests",
"lint:package": "eslint build --fix",
"transpile:watch": "tsc --watch",
"postinstall": "cp -r @types/* node_modules/@gi-types/",
"transpile": "npm run lint:extension && tsc",
"build": "npm run clean && npm run transpile && node --unhandled-rejections=strict build/scripts/transpile.js && npm run lint:package",
"clean": "rm -rf build && mkdir build",
"pack": "npm run build && make pack",
"update": "npm run pack && make update"
},
"repository": {
"type": "git",
"url": "https://gitlab.gnome.org/harshadgavali/gnome-gestures.git"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@gi-types/base-types": "^1.0.0",
"@gi-types/gjs-environment": "^1.0.0",
"@gi-types/gio2": "^2.68.0",
"@gi-types/glib2": "^2.68.0",
"@gi-types/gobject2": "^2.68.0",
"@gi-types/gtk4-types": "^1.0.0",
"@gi-types/gtk4": "^4.2.0",
"@gi.ts/cli": "^1.5.7",
"@gi.ts/lib": "^1.5.9",
"@types/glob": "^7.2.0",
"@types/node": "^17.0.23",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"typescript": "^4.3.5",
"eslint": "^8.12.0"
},
"dependencies": {
"fs": "0.0.1-security",
"glob": "^7.2.0",
"path": "^0.12.7",
"typescript": "^4.6.3",
"yargs": "^17.4.0"
}
}