forked from steipete/RepoBar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.11 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.11 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
28
29
30
31
32
33
34
35
{
"name": "repobar",
"version": "0.1.0",
"private": true,
"scripts": {
"format": "./Scripts/swiftformat.sh",
"lint": "./Scripts/swiftlint.sh",
"coverage": "./Scripts/coverage.sh",
"check": "pnpm format && pnpm lint && pnpm test",
"check:coverage": "pnpm coverage",
"docs:list": "node Scripts/docs-list.mjs",
"test": "./Scripts/test.sh",
"build": "swift build",
"repobar": "swift build --product repobarcli && ./Scripts/codesign_cli.sh .build/debug/repobarcli && .build/debug/repobarcli",
"repobarcli": "pnpm -s repobar",
"start": "./Scripts/compile_and_run.sh",
"restart": "./Scripts/compile_and_run.sh",
"stop": "pkill -f \"RepoBar.app/Contents/MacOS/RepoBar\" || true",
"codegen": "./Scripts/apollo_codegen.sh",
"ghql": "pnpm exec tsx Scripts/ghql.ts",
"ghrest": "pnpm exec tsx Scripts/ghrest.ts"
},
"dependencies": {
"graphql": "^16.12.0"
},
"devDependencies": {
"@octokit/request": "^10.0.7",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"dotenv-cli": "^11.0.0",
"ora": "^9.0.0",
"tsx": "^4.21.0",
"zod": "^4.1.13"
}
}