git-switchboard 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/git-switchboard +0 -0
- package/package.json +52 -0
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "git-switchboard",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Interactive TUI for browsing and checking out git branches",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Craigory Coppola",
|
|
7
|
+
"url": "https://craigory.dev"
|
|
8
|
+
},
|
|
9
|
+
"bugs": {
|
|
10
|
+
"url": "https://github.com/AgentEnder/craigory-dev/issues"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://craigory.dev",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/AgentEnder/craigory-dev.git",
|
|
16
|
+
"directory": "packages/git-switchboard"
|
|
17
|
+
},
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"access": "public"
|
|
20
|
+
},
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"type": "module",
|
|
23
|
+
"bin": {
|
|
24
|
+
"git-switchboard": "./dist/git-switchboard"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@octokit/graphql-schema": "^15.26.1",
|
|
28
|
+
"@octokit/rest": "^22.0.0",
|
|
29
|
+
"@opentui/core": "^0.1.95",
|
|
30
|
+
"@opentui/react": "^0.1.95",
|
|
31
|
+
"@types/node": "22.18.1",
|
|
32
|
+
"@types/react": "^19.0.0",
|
|
33
|
+
"cli-forge": "^1.2.0",
|
|
34
|
+
"clipboardy": "^5.3.1",
|
|
35
|
+
"gql.tada": "^1.9.2",
|
|
36
|
+
"graphql": "^16.13.2",
|
|
37
|
+
"react": "^19.0.0",
|
|
38
|
+
"tslib": "^2.5.0",
|
|
39
|
+
"tsx": "^4.21.0",
|
|
40
|
+
"typescript": "5.9.2",
|
|
41
|
+
"zustand": "^5.0.8"
|
|
42
|
+
},
|
|
43
|
+
"files": [
|
|
44
|
+
"dist/git-switchboard",
|
|
45
|
+
"README.md"
|
|
46
|
+
],
|
|
47
|
+
"scripts": {
|
|
48
|
+
"dev": "bun run src/cli.ts",
|
|
49
|
+
"build": "bun build src/cli.ts --compile --outfile=dist/git-switchboard",
|
|
50
|
+
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
51
|
+
}
|
|
52
|
+
}
|