-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 856 Bytes
/
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
{
"name": "keyvis",
"version": "0.2.0",
"description": "A simple and lightweight keystroke visualisation tool",
"type": "module",
"bin": {
"keyvis": "./keyvis"
},
"scripts": {
"build:app": "bun run esbuild.js",
"start:app": "gjs -m dist/main.js",
"debug": "GTK_DEBUG=interactive gjs -m dist/main.js",
"start": "bun esbuild.js && bun run start:app",
"validate": "bun run validate:types",
"validate:types": "tsc --noEmit",
"clear": "rm -rf dist @types"
},
"author": "D7OM <[email protected]>",
"license": "MIT",
"dependencies": {
"@girs/gjs": "^4.0.0-beta.16",
"@girs/gtk-4.0": "^4.15.5-4.0.0-beta.16",
"@types/node": "^22.7.7"
},
"devDependencies": {
"esbuild": "^0.24.0",
"typescript": "^5.6.3"
}
}