this repo has no description
at main 20 lines 901 B view raw
1{ 2 "name": "codexbar", 3 "private": true, 4 "scripts": { 5 "start": "./Scripts/compile_and_run.sh", 6 "start:debug": "./Scripts/compile_and_run.sh", 7 "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'", 8 "lint": "swiftlint --strict", 9 "format": "swiftformat Sources Tests", 10 "check": "swiftformat Sources Tests --lint && swiftlint --strict", 11 "docs:list": "node Scripts/docs-list.mjs", 12 "build": "swift build", 13 "test": "swift test", 14 "test:tty": "swift test --filter TTYIntegrationTests", 15 "test:live": "LIVE_TEST=1 swift test --filter LiveAccountTests", 16 "release": "./Scripts/package_app.sh release", 17 "restart": "pnpm start", 18 "stop": "pkill -x CodexBar || pkill -f CodexBar.app || true" 19 } 20}