forked from steipete/CodexBar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 901 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "codexbar",
"private": true,
"scripts": {
"start": "./Scripts/compile_and_run.sh",
"start:debug": "./Scripts/compile_and_run.sh",
"start:release": "sh -c './Scripts/package_app.sh release && (pkill -x CodexBar || pkill -f CodexBar.app || true) && cd /Users/steipete/Projects/codexbar && open -n /Users/steipete/Projects/codexbar/CodexBar.app'",
"lint": "swiftlint --strict",
"format": "swiftformat Sources Tests",
"check": "swiftformat Sources Tests --lint && swiftlint --strict",
"docs:list": "node Scripts/docs-list.mjs",
"build": "swift build",
"test": "swift test",
"test:tty": "swift test --filter TTYIntegrationTests",
"test:live": "LIVE_TEST=1 swift test --filter LiveAccountTests",
"release": "./Scripts/package_app.sh release",
"restart": "pnpm start",
"stop": "pkill -x CodexBar || pkill -f CodexBar.app || true"
}
}