forked from timlau/gtk4-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.37 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
{
"name": "@gjsify/example-gtk4",
"version": "0.0.1",
"description": "It takes the hassle away from building Gtk4 application in Gjs, so you can create a cool application, without all the boilerplate code",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:types": "ts-for-gir generate gtk4 Gtk-4.0 Polkit-1.0 -e gjs --useNamespace -t esm --fixConflicts --noCheck=false",
"build:app": "node esbuild.js",
"build": "npm run build:types && npm run build:app",
"start:gjs": "gjs -m dist/main.js",
"start:gjs:debug": "GTK_DEBUG=interactive gjs -m dist/main.js",
"start": "npm run build:app && npm run start:gjs",
"validate": "npm run validate:types && npm run validate:app",
"validate:types": "NODE_OPTIONS=--max_old_space_size=9216 tsc ./@types/Gjs/*.ts --noEmit",
"validate:app": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gjsify/example-gtk4.git"
},
"author": "Pascal Garber <[email protected]",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/gjsify/example-gtk4/issues"
},
"homepage": "https://github.com/gjsify/example-gtk4#readme",
"devDependencies": {
"@ts-for-gir/cli": "^3.0.0-beta.5",
"babel-plugin-gjs": "^0.0.11",
"esbuild": "^0.14.36",
"typescript": "^4.7.3"
}
}