@enjoys/context-engine 1.0.0 → 1.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.
Files changed (105) hide show
  1. package/data/commands/adb.json +322 -0
  2. package/data/commands/alembic.json +301 -0
  3. package/data/commands/artisan.json +277 -0
  4. package/data/commands/atlas.json +426 -0
  5. package/data/commands/auth0.json +648 -0
  6. package/data/commands/bat.json +84 -0
  7. package/data/commands/bundle.json +321 -0
  8. package/data/commands/composer.json +507 -0
  9. package/data/commands/dart.json +216 -0
  10. package/data/commands/dbmate.json +257 -0
  11. package/data/commands/docker-compose.json +384 -0
  12. package/data/commands/drizzle-kit.json +217 -0
  13. package/data/commands/expo.json +65 -0
  14. package/data/commands/fastlane.json +243 -0
  15. package/data/commands/fd.json +86 -0
  16. package/data/commands/flutter.json +298 -0
  17. package/data/commands/flyway.json +261 -0
  18. package/data/commands/fzf.json +103 -0
  19. package/data/commands/gem.json +267 -0
  20. package/data/commands/jq.json +100 -0
  21. package/data/commands/k9s.json +62 -0
  22. package/data/commands/liquibase.json +399 -0
  23. package/data/commands/manifest.json +619 -0
  24. package/data/commands/minikube.json +60 -0
  25. package/data/commands/ng.json +64 -0
  26. package/data/commands/nuxt.json +60 -0
  27. package/data/commands/php.json +157 -0
  28. package/data/commands/pm2.json +259 -0
  29. package/data/commands/pod.json +175 -0
  30. package/data/commands/prisma.json +257 -0
  31. package/data/commands/rails.json +372 -0
  32. package/data/commands/rake.json +360 -0
  33. package/data/commands/react-native.json +57 -0
  34. package/data/commands/rg.json +103 -0
  35. package/data/commands/rspec.json +257 -0
  36. package/data/commands/ruby.json +108 -0
  37. package/data/commands/sequelize.json +342 -0
  38. package/data/commands/snyk.json +442 -0
  39. package/data/commands/sonar-scanner.json +219 -0
  40. package/data/commands/stripe.json +314 -0
  41. package/data/commands/symfony.json +449 -0
  42. package/data/commands/tmux.json +197 -0
  43. package/data/commands/trivy.json +367 -0
  44. package/data/commands/twilio.json +382 -0
  45. package/data/commands/typeorm.json +262 -0
  46. package/data/commands/vue.json +60 -0
  47. package/data/commands/wp.json +857 -0
  48. package/data/commands/xcodebuild.json +141 -0
  49. package/data/commands/yq.json +57 -0
  50. package/data/completion/bash.json +1184 -0
  51. package/data/completion/c.json +1067 -0
  52. package/data/completion/cpp.json +824 -0
  53. package/data/completion/csharp.json +860 -0
  54. package/data/completion/dockerfile.json +536 -0
  55. package/data/completion/go.json +1346 -0
  56. package/data/completion/html.json +806 -0
  57. package/data/completion/java.json +1112 -0
  58. package/data/completion/javascript.json +914 -0
  59. package/data/completion/lua.json +968 -0
  60. package/data/completion/php.json +1535 -0
  61. package/data/completion/python.json +1427 -0
  62. package/data/completion/ruby.json +1531 -0
  63. package/data/completion/rust.json +698 -0
  64. package/data/completion/sql.json +887 -0
  65. package/data/completion/toml.json +428 -0
  66. package/data/completion/typescript.json +338 -0
  67. package/data/completion/yaml.json +563 -0
  68. package/data/defination/bash.json +565 -0
  69. package/data/defination/c.json +865 -0
  70. package/data/defination/cpp.json +348 -0
  71. package/data/defination/csharp.json +144 -0
  72. package/data/defination/dockerfile.json +113 -0
  73. package/data/defination/go.json +561 -0
  74. package/data/defination/html.json +559 -0
  75. package/data/defination/java.json +184 -0
  76. package/data/defination/javascript.json +265 -0
  77. package/data/defination/lua.json +181 -0
  78. package/data/defination/php.json +726 -0
  79. package/data/defination/python.json +717 -0
  80. package/data/defination/ruby.json +670 -0
  81. package/data/defination/rust.json +207 -0
  82. package/data/defination/sql.json +473 -0
  83. package/data/defination/toml.json +251 -0
  84. package/data/defination/typescript.json +29 -0
  85. package/data/defination/yaml.json +197 -0
  86. package/data/hover/bash.json +245 -0
  87. package/data/hover/c.json +265 -0
  88. package/data/hover/cpp.json +210 -0
  89. package/data/hover/csharp.json +290 -0
  90. package/data/hover/dockerfile.json +145 -0
  91. package/data/hover/go.json +580 -0
  92. package/data/hover/html.json +250 -0
  93. package/data/hover/java.json +395 -0
  94. package/data/hover/javascript.json +330 -0
  95. package/data/hover/lua.json +265 -0
  96. package/data/hover/php.json +300 -0
  97. package/data/hover/python.json +380 -0
  98. package/data/hover/ruby.json +265 -0
  99. package/data/hover/rust.json +275 -0
  100. package/data/hover/sql.json +230 -0
  101. package/data/hover/toml.json +145 -0
  102. package/data/hover/typescript.json +120 -0
  103. package/data/hover/yaml.json +165 -0
  104. package/data/manifest.json +242 -0
  105. package/package.json +1 -1
@@ -0,0 +1,242 @@
1
+ {
2
+ "version": "1.0.0",
3
+ "description": "Monaco editor language support data for completion, definition, and hover providers",
4
+ "generatedAt": "2026-03-03",
5
+ "languages": [
6
+ {
7
+ "id": "bash",
8
+ "name": "Shell/Bash",
9
+ "files": {
10
+ "completion": "completion/bash.json",
11
+ "defination": "defination/bash.json",
12
+ "hover": "hover/bash.json"
13
+ }
14
+ },
15
+ {
16
+ "id": "c",
17
+ "name": "C",
18
+ "files": {
19
+ "completion": "completion/c.json",
20
+ "defination": "defination/c.json",
21
+ "hover": "hover/c.json"
22
+ }
23
+ },
24
+ {
25
+ "id": "cpp",
26
+ "name": "C++",
27
+ "files": {
28
+ "completion": "completion/cpp.json",
29
+ "defination": "defination/cpp.json",
30
+ "hover": "hover/cpp.json"
31
+ }
32
+ },
33
+ {
34
+ "id": "csharp",
35
+ "name": "C#",
36
+ "files": {
37
+ "completion": "completion/csharp.json",
38
+ "defination": "defination/csharp.json",
39
+ "hover": "hover/csharp.json"
40
+ }
41
+ },
42
+ {
43
+ "id": "dockerfile",
44
+ "name": "Dockerfile",
45
+ "files": {
46
+ "completion": "completion/dockerfile.json",
47
+ "defination": "defination/dockerfile.json",
48
+ "hover": "hover/dockerfile.json"
49
+ }
50
+ },
51
+ {
52
+ "id": "go",
53
+ "name": "Go",
54
+ "files": {
55
+ "completion": "completion/go.json",
56
+ "defination": "defination/go.json",
57
+ "hover": "hover/go.json"
58
+ }
59
+ },
60
+ {
61
+ "id": "html",
62
+ "name": "HTML/CSS",
63
+ "files": {
64
+ "completion": "completion/html.json",
65
+ "defination": "defination/html.json",
66
+ "hover": "hover/html.json"
67
+ }
68
+ },
69
+ {
70
+ "id": "java",
71
+ "name": "Java",
72
+ "files": {
73
+ "completion": "completion/java.json",
74
+ "defination": "defination/java.json",
75
+ "hover": "hover/java.json"
76
+ }
77
+ },
78
+ {
79
+ "id": "javascript",
80
+ "name": "JavaScript",
81
+ "files": {
82
+ "completion": "completion/javascript.json",
83
+ "defination": "defination/javascript.json",
84
+ "hover": "hover/javascript.json"
85
+ }
86
+ },
87
+ {
88
+ "id": "lua",
89
+ "name": "Lua",
90
+ "files": {
91
+ "completion": "completion/lua.json",
92
+ "defination": "defination/lua.json",
93
+ "hover": "hover/lua.json"
94
+ }
95
+ },
96
+ {
97
+ "id": "php",
98
+ "name": "PHP",
99
+ "files": {
100
+ "completion": "completion/php.json",
101
+ "defination": "defination/php.json",
102
+ "hover": "hover/php.json"
103
+ }
104
+ },
105
+ {
106
+ "id": "python",
107
+ "name": "Python",
108
+ "files": {
109
+ "completion": "completion/python.json",
110
+ "defination": "defination/python.json",
111
+ "hover": "hover/python.json"
112
+ }
113
+ },
114
+ {
115
+ "id": "ruby",
116
+ "name": "Ruby",
117
+ "files": {
118
+ "completion": "completion/ruby.json",
119
+ "defination": "defination/ruby.json",
120
+ "hover": "hover/ruby.json"
121
+ }
122
+ },
123
+ {
124
+ "id": "rust",
125
+ "name": "Rust",
126
+ "files": {
127
+ "completion": "completion/rust.json",
128
+ "defination": "defination/rust.json",
129
+ "hover": "hover/rust.json"
130
+ }
131
+ },
132
+ {
133
+ "id": "sql",
134
+ "name": "SQL",
135
+ "files": {
136
+ "completion": "completion/sql.json",
137
+ "defination": "defination/sql.json",
138
+ "hover": "hover/sql.json"
139
+ }
140
+ },
141
+ {
142
+ "id": "toml",
143
+ "name": "TOML",
144
+ "files": {
145
+ "completion": "completion/toml.json",
146
+ "defination": "defination/toml.json",
147
+ "hover": "hover/toml.json"
148
+ }
149
+ },
150
+ {
151
+ "id": "typescript",
152
+ "name": "TypeScript",
153
+ "files": {
154
+ "completion": "completion/typescript.json",
155
+ "defination": "defination/typescript.json",
156
+ "hover": "hover/typescript.json"
157
+ }
158
+ },
159
+ {
160
+ "id": "yaml",
161
+ "name": "YAML",
162
+ "files": {
163
+ "completion": "completion/yaml.json",
164
+ "defination": "defination/yaml.json",
165
+ "hover": "hover/yaml.json"
166
+ }
167
+ }
168
+ ],
169
+ "directories": {
170
+ "completion": {
171
+ "description": "Autocomplete suggestions with snippets, functions, keywords, and documentation",
172
+ "files": [
173
+ "bash.json",
174
+ "c.json",
175
+ "cpp.json",
176
+ "csharp.json",
177
+ "dockerfile.json",
178
+ "go.json",
179
+ "html.json",
180
+ "java.json",
181
+ "javascript.json",
182
+ "lua.json",
183
+ "php.json",
184
+ "python.json",
185
+ "ruby.json",
186
+ "rust.json",
187
+ "sql.json",
188
+ "toml.json",
189
+ "typescript.json",
190
+ "yaml.json"
191
+ ]
192
+ },
193
+ "defination": {
194
+ "description": "Type definitions, class signatures, method members, and module documentation",
195
+ "files": [
196
+ "bash.json",
197
+ "c.json",
198
+ "cpp.json",
199
+ "csharp.json",
200
+ "dockerfile.json",
201
+ "go.json",
202
+ "html.json",
203
+ "java.json",
204
+ "javascript.json",
205
+ "lua.json",
206
+ "php.json",
207
+ "python.json",
208
+ "ruby.json",
209
+ "rust.json",
210
+ "sql.json",
211
+ "toml.json",
212
+ "typescript.json",
213
+ "yaml.json"
214
+ ]
215
+ },
216
+ "hover": {
217
+ "description": "Hover tooltips with function signatures, descriptions, and usage examples",
218
+ "files": [
219
+ "bash.json",
220
+ "c.json",
221
+ "cpp.json",
222
+ "csharp.json",
223
+ "dockerfile.json",
224
+ "go.json",
225
+ "html.json",
226
+ "java.json",
227
+ "javascript.json",
228
+ "lua.json",
229
+ "php.json",
230
+ "python.json",
231
+ "ruby.json",
232
+ "rust.json",
233
+ "sql.json",
234
+ "toml.json",
235
+ "typescript.json",
236
+ "yaml.json"
237
+ ]
238
+ }
239
+ },
240
+ "totalLanguages": 18,
241
+ "totalFiles": 54
242
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enjoys/context-engine",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Comprehensive CLI command context engine with 133 tools — subcommands, options, examples, and runtime context detectors for intelligent terminal autocomplete",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",