generated from swsnr/gnome-shell-extension-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.65 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
53
54
55
56
57
{
"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": "glob -c 'git add' 'ui/*.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",
"postxgettext": "sed -i /POT-Creation-Date/d po/picture-of-the-day@swsnr.de.pot",
"lint": "eslint .",
"format": "prettier .",
"clean": "rimraf --no-interactive build dist"
},
"engines": {
"node": ">=23"
},
"devDependencies": {
"@girs/gnome-shell": "47.0.0",
"@girs/soup-3.0": "3.6.0-4.0.0-beta.18",
"@swsnr/gsebuild": "^0.1.1",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"glob": "^11.0.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.6.3"
},
"gsebuild": {
"gettext": {
"sources": ["ui/*.blp", "src/**/*.ts"],
"copyright-holder": "Sebastian Wiesner <sebastian@swsnr.de>"
},
"pack": {
"copy-to-source": [
"ui/*.ui",
["./src/lib/vendor/saxes/README.md", "lib/vendor/saxes/README.md"],
["./src/lib/vendor/xmlchars/README.md", "lib/vendor/xmlchars/README.md"]
],
"source-directory": "build",
"extra-sources": [
"ui",
"lib",
"../README.md",
"../LICENSE*",
"../icons/"
],
"schemas": [
"../schemas/*.gschema.xml"
]
}
}
}