lastgen-cli 1.0.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.
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env node
2
+ import {
3
+ describeJiraError,
4
+ extractIssueKey,
5
+ fetchIssue,
6
+ validateAuth
7
+ } from "./chunk-NILKRTZZ.js";
8
+ import "./chunk-JGVBNMNK.js";
9
+ export {
10
+ describeJiraError,
11
+ extractIssueKey,
12
+ fetchIssue,
13
+ validateAuth
14
+ };
@@ -0,0 +1,24 @@
1
+ #!/usr/bin/env node
2
+ import {
3
+ TRELLO_BACK,
4
+ describeTrelloError,
5
+ extractCardId,
6
+ fetchBoardCards,
7
+ fetchBoards,
8
+ fetchCard,
9
+ runTrelloBoardPicker,
10
+ runTrelloCardPicker,
11
+ validateTrelloAuth
12
+ } from "./chunk-JUKR4XSW.js";
13
+ import "./chunk-JGVBNMNK.js";
14
+ export {
15
+ TRELLO_BACK,
16
+ describeTrelloError,
17
+ extractCardId,
18
+ fetchBoardCards,
19
+ fetchBoards,
20
+ fetchCard,
21
+ runTrelloBoardPicker,
22
+ runTrelloCardPicker,
23
+ validateTrelloAuth
24
+ };
@@ -0,0 +1,75 @@
1
+ #!/usr/bin/env node
2
+ import {
3
+ GUTTER,
4
+ LOGO_LINE_COUNT,
5
+ assistantHeader,
6
+ banner,
7
+ bannerDecode,
8
+ bannerLines,
9
+ buildInputRule,
10
+ buildLogoSettle,
11
+ closeInput,
12
+ colors,
13
+ decodeFrame,
14
+ error,
15
+ formatTokens,
16
+ goodbye,
17
+ info,
18
+ logoDecodeLines,
19
+ newline,
20
+ ok,
21
+ pick,
22
+ pickThinkingPhrase,
23
+ prompt,
24
+ promptBoxed,
25
+ promptExtraContext,
26
+ promptHidden,
27
+ randomGlitchChar,
28
+ renderUserBubble,
29
+ setOutputSink,
30
+ startPinnedChat,
31
+ startThinking,
32
+ tokenLabel,
33
+ turnSeparator,
34
+ userPromptLabel,
35
+ visibleLength,
36
+ wrapAnsi,
37
+ write
38
+ } from "./chunk-ESFGGWR6.js";
39
+ export {
40
+ GUTTER,
41
+ LOGO_LINE_COUNT,
42
+ assistantHeader,
43
+ banner,
44
+ bannerDecode,
45
+ bannerLines,
46
+ buildInputRule,
47
+ buildLogoSettle,
48
+ closeInput,
49
+ colors,
50
+ decodeFrame,
51
+ error,
52
+ formatTokens,
53
+ goodbye,
54
+ info,
55
+ logoDecodeLines,
56
+ newline,
57
+ ok,
58
+ pick,
59
+ pickThinkingPhrase,
60
+ prompt,
61
+ promptBoxed,
62
+ promptExtraContext,
63
+ promptHidden,
64
+ randomGlitchChar,
65
+ renderUserBubble,
66
+ setOutputSink,
67
+ startPinnedChat,
68
+ startThinking,
69
+ tokenLabel,
70
+ turnSeparator,
71
+ userPromptLabel,
72
+ visibleLength,
73
+ wrapAnsi,
74
+ write
75
+ };
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "lastgen-cli",
3
+ "version": "1.0.0",
4
+ "description": "Lastgen — OpenAI uyumlu API'lere bağlanan interaktif terminal AI sohbet CLI'ı",
5
+ "type": "module",
6
+ "bin": {
7
+ "lastgen": "dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "engines": {
13
+ "node": ">=18"
14
+ },
15
+ "scripts": {
16
+ "build": "tsup",
17
+ "dev": "tsx src/index.ts",
18
+ "start": "node dist/index.js",
19
+ "test": "vitest run && tsc --noEmit",
20
+ "test:watch": "vitest",
21
+ "typecheck": "tsc --noEmit"
22
+ },
23
+ "keywords": [
24
+ "cli",
25
+ "ai",
26
+ "chat",
27
+ "openai",
28
+ "llm"
29
+ ],
30
+ "license": "MIT",
31
+ "dependencies": {
32
+ "chalk": "^5.3.0",
33
+ "undici": "^6.19.0"
34
+ },
35
+ "devDependencies": {
36
+ "@types/node": "^20.11.0",
37
+ "tsup": "^8.0.0",
38
+ "tsx": "^4.7.0",
39
+ "typescript": "^5.4.0",
40
+ "vitest": "^1.4.0"
41
+ }
42
+ }