-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 1.16 KB
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
{
"name": "crosshook",
"description": "Scripts for CrossHook",
"scripts": {
"dev": "scripts/dev-native.sh",
"dev:browser": "scripts/dev-native.sh --browser",
"flatpak:binary": "scripts/build-release-binary.sh",
"flatpak:build": "scripts/build-flatpak.sh --rebuild",
"flatpak:install": "scripts/build-flatpak.sh --install",
"flatpak:update": "scripts/build-flatpak.sh --rebuild --install",
"flatpak:run": "flatpak run dev.crosshook.CrossHook",
"lint": "scripts/lint.sh",
"lint:staged": "scripts/lint.sh --staged",
"lint:unstaged": "scripts/lint.sh --unstaged",
"lint:modified": "scripts/lint.sh --modified",
"lint:fix": "scripts/lint.sh --fix",
"lint:fix:staged": "scripts/lint.sh --fix --staged",
"lint:fix:unstaged": "scripts/lint.sh --fix --unstaged",
"lint:fix:modified": "scripts/lint.sh --fix --modified",
"format": "scripts/format.sh",
"format:staged": "scripts/format.sh --staged",
"format:unstaged": "scripts/format.sh --unstaged",
"format:modified": "scripts/format.sh --modified",
"release": "scripts/prepare-release.sh --tag",
"release:push": "scripts/prepare-release.sh --push --tag"
}
}