@knpkv/codecommit 0.1.1 → 0.2.0
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/LICENSE +21 -0
- package/dist/package.json +3 -3
- package/dist/src/bin.js +0 -0
- package/dist/src/tui/Constants.d.ts.map +1 -1
- package/dist/src/tui/Constants.js +2 -2
- package/dist/src/tui/Constants.js.map +1 -1
- package/dist/src/tui/ListBuilder.d.ts.map +1 -1
- package/dist/src/tui/ListBuilder.js +19 -6
- package/dist/src/tui/ListBuilder.js.map +1 -1
- package/dist/src/tui/atoms/actions.d.ts +5 -0
- package/dist/src/tui/atoms/actions.d.ts.map +1 -1
- package/dist/src/tui/atoms/actions.js +14 -2
- package/dist/src/tui/atoms/actions.js.map +1 -1
- package/dist/src/tui/atoms/ui.d.ts +2 -1
- package/dist/src/tui/atoms/ui.d.ts.map +1 -1
- package/dist/src/tui/atoms/ui.js +2 -0
- package/dist/src/tui/atoms/ui.js.map +1 -1
- package/dist/src/tui/components/DetailsView.d.ts.map +1 -1
- package/dist/src/tui/components/DetailsView.js +70 -6
- package/dist/src/tui/components/DetailsView.js.map +1 -1
- package/dist/src/tui/components/ListItemRow.d.ts.map +1 -1
- package/dist/src/tui/components/ListItemRow.js +27 -12
- package/dist/src/tui/components/ListItemRow.js.map +1 -1
- package/dist/src/tui/components/QuickFilters.d.ts.map +1 -1
- package/dist/src/tui/components/QuickFilters.js +8 -42
- package/dist/src/tui/components/QuickFilters.js.map +1 -1
- package/dist/src/tui/hooks/useKeyboardNav.d.ts.map +1 -1
- package/dist/src/tui/hooks/useKeyboardNav.js +23 -11
- package/dist/src/tui/hooks/useKeyboardNav.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +14 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knpkv/codecommit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "TUI for browsing AWS CodeCommit PRs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -14,30 +14,20 @@
|
|
|
14
14
|
"files": [
|
|
15
15
|
"dist"
|
|
16
16
|
],
|
|
17
|
-
"scripts": {
|
|
18
|
-
"start": "bun src/bin.ts",
|
|
19
|
-
"start:web": "bun src/bin.ts web",
|
|
20
|
-
"prepack": "tsc -b",
|
|
21
|
-
"build": "tsc -b",
|
|
22
|
-
"check": "tsc -b tsconfig.json",
|
|
23
|
-
"test": "vitest",
|
|
24
|
-
"lint": "eslint \"{src,test}/**/*.{ts,tsx}\"",
|
|
25
|
-
"docgen": "docgen"
|
|
26
|
-
},
|
|
27
17
|
"dependencies": {
|
|
28
18
|
"@effect-atom/atom-react": "latest",
|
|
29
19
|
"@effect/cli": "latest",
|
|
30
20
|
"@effect/platform": "^0.94.2",
|
|
31
21
|
"@effect/platform-bun": "^0.87.1",
|
|
32
22
|
"@effect/platform-node": "latest",
|
|
33
|
-
"@knpkv/codecommit-core": "workspace:*",
|
|
34
|
-
"@knpkv/codecommit-web": "workspace:*",
|
|
35
23
|
"@opentui/core": "https://pkg.pr.new/anomalyco/opentui/@opentui/core@367a94087821b3b5feedd35bbb57df43b10a286e",
|
|
36
24
|
"@opentui/react": "https://pkg.pr.new/anomalyco/opentui/@opentui/react@367a94087821b3b5feedd35bbb57df43b10a286e",
|
|
37
25
|
"effect": "latest",
|
|
38
26
|
"open": "^10.1.0",
|
|
39
27
|
"react": "^19.1.0",
|
|
40
|
-
"tslib": "^2.8.1"
|
|
28
|
+
"tslib": "^2.8.1",
|
|
29
|
+
"@knpkv/codecommit-core": "^0.2.0",
|
|
30
|
+
"@knpkv/codecommit-web": "^0.2.0"
|
|
41
31
|
},
|
|
42
32
|
"devDependencies": {
|
|
43
33
|
"@effect/vitest": "latest",
|
|
@@ -46,5 +36,14 @@
|
|
|
46
36
|
"@types/node": "latest",
|
|
47
37
|
"@types/react": "^19.1.8",
|
|
48
38
|
"vitest": "latest"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"start": "bun src/bin.ts",
|
|
42
|
+
"start:web": "bun src/bin.ts web",
|
|
43
|
+
"build": "tsc -b",
|
|
44
|
+
"check": "tsc -b tsconfig.json",
|
|
45
|
+
"test": "vitest",
|
|
46
|
+
"lint": "eslint \"{src,test}/**/*.{ts,tsx}\"",
|
|
47
|
+
"docgen": "docgen"
|
|
49
48
|
}
|
|
50
|
-
}
|
|
49
|
+
}
|