forked from swsnr/gnome-shell-extension-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.28 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
{
"license": "GPL-2.0-or-later OR MPL-2.0",
"type": "module",
"private": true,
"scripts": {
"blueprint": "glob -c 'blueprint-compiler batch-compile ui ui' 'ui/*.blp'",
"postblueprint": "git add ui",
"compile": "tsc --build tsconfig.json",
"postcompile": "eslint --no-config-lookup --config eslint.config.dist.js --quiet --fix .",
"prepack": "npm run compile",
"pack": "gsebuild pack",
"check:types": "tsc --build tsconfig.types.json --force",
"xgettext": "gsebuild xgettext",
"lint": "eslint .",
"format": "prettier .",
"clean": "rimraf --no-interactive dist build"
},
"engines": {
"node": ">=22"
},
"devDependencies": {
"@girs/gnome-shell": "^47.0.0",
"@swsnr/gsebuild": "^0.1.2",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.4.1",
"rimraf": "^6.0.1",
"typescript": "^5.7.2"
},
"gsebuild": {
"gettext": {
"sources": ["ui/*.blp"],
"copyright-holder": "Matteo Bigoi <[email protected]>"
},
"pack": {
"copy-to-source": ["ui/*.ui"],
"source-directory": "build",
"extra-sources": [
"lib",
"ui",
"../LICENSE*",
"../README.md",
"../icons/"
],
"schemas": ["../schemas/*.gschema.xml"]
}
}
}