codetyper-cli 0.1.74
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/README.md +284 -0
- package/dist/highlights-eq9cgrbb.scm +604 -0
- package/dist/highlights-ghv9g403.scm +205 -0
- package/dist/highlights-hk7bwhj4.scm +284 -0
- package/dist/highlights-r812a2qc.scm +150 -0
- package/dist/highlights-x6tmsnaa.scm +115 -0
- package/dist/index.js +104286 -0
- package/dist/injections-73j83es3.scm +27 -0
- package/dist/tree-sitter-javascript-nd0q4pe9.wasm +0 -0
- package/dist/tree-sitter-markdown-411r6y9b.wasm +0 -0
- package/dist/tree-sitter-markdown_inline-j5349f42.wasm +0 -0
- package/dist/tree-sitter-typescript-zxjzwt75.wasm +0 -0
- package/dist/tree-sitter-zig-e78zbjpm.wasm +0 -0
- package/package.json +100 -0
- package/src/version.json +3 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
; Query from: https://raw.githubusercontent.com/nvim-treesitter/nvim-treesitter/refs/heads/master/queries/markdown/injections.scm
|
|
2
|
+
(fenced_code_block
|
|
3
|
+
(info_string
|
|
4
|
+
(language) @_lang)
|
|
5
|
+
(code_fence_content) @injection.content
|
|
6
|
+
(#set-lang-from-info-string! @_lang))
|
|
7
|
+
|
|
8
|
+
((html_block) @injection.content
|
|
9
|
+
(#set! injection.language "html")
|
|
10
|
+
(#set! injection.combined)
|
|
11
|
+
(#set! injection.include-children))
|
|
12
|
+
|
|
13
|
+
((minus_metadata) @injection.content
|
|
14
|
+
(#set! injection.language "yaml")
|
|
15
|
+
(#offset! @injection.content 1 0 -1 0)
|
|
16
|
+
(#set! injection.include-children))
|
|
17
|
+
|
|
18
|
+
((plus_metadata) @injection.content
|
|
19
|
+
(#set! injection.language "toml")
|
|
20
|
+
(#offset! @injection.content 1 0 -1 0)
|
|
21
|
+
(#set! injection.include-children))
|
|
22
|
+
|
|
23
|
+
([
|
|
24
|
+
(inline)
|
|
25
|
+
(pipe_table_cell)
|
|
26
|
+
] @injection.content
|
|
27
|
+
(#set! injection.language "markdown_inline"))
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "codetyper-cli",
|
|
3
|
+
"version": "0.1.74",
|
|
4
|
+
"description": "CodeTyper AI Agent - Standalone CLI for autonomous code generation",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"codetyper": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"type": "module",
|
|
10
|
+
"scripts": {
|
|
11
|
+
"dev": "bun src/index.ts",
|
|
12
|
+
"dev:nobump": "bun scripts/build.ts && npm link",
|
|
13
|
+
"dev:watch": "bun scripts/dev-watch.ts",
|
|
14
|
+
"build": "bun scripts/build.ts",
|
|
15
|
+
"sync-version": "bun scripts/sync-version.ts",
|
|
16
|
+
"start": "bun src/index.ts",
|
|
17
|
+
"test": "bun test",
|
|
18
|
+
"lint": "bun eslint src/**/*.ts",
|
|
19
|
+
"format": "npx prettier --write \"src/**/*.ts\"",
|
|
20
|
+
"prettier": "npx prettier --write \"src/**/*.ts\" \"src/**/*.tsx\" \"scripts/**/*.ts\"",
|
|
21
|
+
"typecheck": "bun tsc --noEmit"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"ai",
|
|
25
|
+
"coding",
|
|
26
|
+
"assistant",
|
|
27
|
+
"cli",
|
|
28
|
+
"agent",
|
|
29
|
+
"typescript"
|
|
30
|
+
],
|
|
31
|
+
"author": {
|
|
32
|
+
"name": "Carlos Gutierrez",
|
|
33
|
+
"email": "carlos.gutierrez@carg.dev",
|
|
34
|
+
"url": "https://github.com/CarGDev"
|
|
35
|
+
},
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "git+https://github.com/CarGDev/codetyper.nvim.git"
|
|
40
|
+
},
|
|
41
|
+
"homepage": "https://github.com/CarGDev/codetyper.nvim#readme",
|
|
42
|
+
"bugs": {
|
|
43
|
+
"url": "https://github.com/CarGDev/codetyper.nvim/issues"
|
|
44
|
+
},
|
|
45
|
+
"files": [
|
|
46
|
+
"dist/**/*.js",
|
|
47
|
+
"dist/**/*.wasm",
|
|
48
|
+
"dist/**/*.scm",
|
|
49
|
+
"src/version.json"
|
|
50
|
+
],
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"@opentui/core": "^0.1.74",
|
|
53
|
+
"@opentui/solid": "^0.1.74",
|
|
54
|
+
"@solid-primitives/event-bus": "^1.0.11",
|
|
55
|
+
"@solid-primitives/scheduled": "^1.4.3",
|
|
56
|
+
"boxen": "^8.0.1",
|
|
57
|
+
"chalk": "^5.3.0",
|
|
58
|
+
"chokidar": "^5.0.0",
|
|
59
|
+
"cli-highlight": "^2.1.11",
|
|
60
|
+
"commander": "^14.0.2",
|
|
61
|
+
"fast-glob": "^3.3.2",
|
|
62
|
+
"got": "^14.0.0",
|
|
63
|
+
"inquirer": "^13.2.1",
|
|
64
|
+
"mimic-function": "^5.0.1",
|
|
65
|
+
"opentui-spinner": "^0.0.6",
|
|
66
|
+
"ora": "^9.1.0",
|
|
67
|
+
"solid-js": "^1.9.10",
|
|
68
|
+
"uuid": "^13.0.0",
|
|
69
|
+
"zustand": "^5.0.10",
|
|
70
|
+
"zod": "^4.3.5",
|
|
71
|
+
"zod-to-json-schema": "^3.25.1"
|
|
72
|
+
},
|
|
73
|
+
"overrides": {
|
|
74
|
+
"string-width": "^5.1.2",
|
|
75
|
+
"strip-ansi": "^6.0.1"
|
|
76
|
+
},
|
|
77
|
+
"devDependencies": {
|
|
78
|
+
"@eslint/eslintrc": "^3.3.3",
|
|
79
|
+
"@eslint/js": "^9.39.2",
|
|
80
|
+
"@types/inquirer": "^9.0.7",
|
|
81
|
+
"@types/node": "^25.0.10",
|
|
82
|
+
"@types/uuid": "^10.0.0",
|
|
83
|
+
"@typescript-eslint/eslint-plugin": "^8.53.1",
|
|
84
|
+
"@typescript-eslint/parser": "^8.53.1",
|
|
85
|
+
"eslint": "^9.39.2",
|
|
86
|
+
"eslint-config-standard": "^17.1.0",
|
|
87
|
+
"eslint-config-standard-with-typescript": "^43.0.1",
|
|
88
|
+
"eslint-plugin-import": "^2.32.0",
|
|
89
|
+
"eslint-plugin-n": "^17.23.2",
|
|
90
|
+
"eslint-plugin-promise": "^7.2.1",
|
|
91
|
+
"globals": "^17.0.0",
|
|
92
|
+
"prettier": "^3.1.1",
|
|
93
|
+
"typescript": "^5.9.3",
|
|
94
|
+
"typescript-eslint": "^8.53.0",
|
|
95
|
+
"vitest": "^4.0.17"
|
|
96
|
+
},
|
|
97
|
+
"engines": {
|
|
98
|
+
"node": ">=18.0.0"
|
|
99
|
+
}
|
|
100
|
+
}
|
package/src/version.json
ADDED