@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,141 @@
1
+ {
2
+ "name": "xcodebuild",
3
+ "description": "Build Xcode projects and workspaces",
4
+ "category": "mobile",
5
+ "platforms": [
6
+ "macos"
7
+ ],
8
+ "shells": [
9
+ "bash",
10
+ "zsh",
11
+ "fish",
12
+ "powershell"
13
+ ],
14
+ "subcommands": [
15
+ {
16
+ "name": "build",
17
+ "description": "Build the target in the build root (SYMROOT)",
18
+ "args": [],
19
+ "options": [],
20
+ "examples": [
21
+ "xcodebuild"
22
+ ]
23
+ },
24
+ {
25
+ "name": "clean",
26
+ "description": "Remove build products and intermediate files from the build root (SYMROOT)",
27
+ "args": [],
28
+ "options": [],
29
+ "examples": [
30
+ "xcodebuild clean"
31
+ ]
32
+ },
33
+ {
34
+ "name": "test",
35
+ "description": "Test a scheme from the build root (SYMROOT)",
36
+ "args": [],
37
+ "options": [],
38
+ "examples": [
39
+ "xcodebuild test -workspace MyApp.xcworkspace -scheme MyApp -destination 'platform=iOS Simulator,name=iPhone 14'"
40
+ ]
41
+ },
42
+ {
43
+ "name": "archive",
44
+ "description": "Archive a scheme from the build root (SYMROOT)",
45
+ "args": [],
46
+ "options": [],
47
+ "examples": [
48
+ "xcodebuild archive -workspace MyApp.xcworkspace -scheme MyApp -archivePath MyApp.xcarchive"
49
+ ]
50
+ }
51
+ ],
52
+ "globalOptions": [
53
+ {
54
+ "name": "-project",
55
+ "description": "Build the project NAME",
56
+ "type": "string"
57
+ },
58
+ {
59
+ "name": "-workspace",
60
+ "description": "Build the workspace NAME",
61
+ "type": "string"
62
+ },
63
+ {
64
+ "name": "-target",
65
+ "description": "Build the target NAME",
66
+ "type": "string"
67
+ },
68
+ {
69
+ "name": "-alltargets",
70
+ "description": "Build all targets"
71
+ },
72
+ {
73
+ "name": "-scheme",
74
+ "description": "Build the scheme NAME",
75
+ "type": "string"
76
+ },
77
+ {
78
+ "name": "-destination",
79
+ "description": "Use the destination described by DESTINATIONSPECIFIER",
80
+ "type": "string"
81
+ },
82
+ {
83
+ "name": "-configuration",
84
+ "description": "Use the build configuration NAME for building each target",
85
+ "type": "string"
86
+ },
87
+ {
88
+ "name": "-arch",
89
+ "description": "Use the architecture ARCHITECTURE for building each target",
90
+ "type": "string"
91
+ },
92
+ {
93
+ "name": "-sdk",
94
+ "description": "Use SDK as the name or path of the base SDK when building the project",
95
+ "type": "string"
96
+ },
97
+ {
98
+ "name": "-showsdks",
99
+ "description": "Display a comprehensive list of all installed SDKs"
100
+ },
101
+ {
102
+ "name": "-showBuildSettings",
103
+ "description": "display a list of build settings and values"
104
+ },
105
+ {
106
+ "name": "-list",
107
+ "description": "List the targets and configurations in a project, or the schemes in a workspace"
108
+ },
109
+ {
110
+ "name": "-allowProvisioningUpdates",
111
+ "description": "Allow xcodebuild to communicate with the Apple Developer website"
112
+ }
113
+ ],
114
+ "examples": [
115
+ "xcodebuild -workspace MyApp.xcworkspace -scheme MyApp clean build",
116
+ "xcodebuild -list",
117
+ "xcodebuild -showsdks"
118
+ ],
119
+ "relatedCommands": [
120
+ "pod",
121
+ "fastlane"
122
+ ],
123
+ "contextEngine": {
124
+ "detectors": [
125
+ {
126
+ "name": "workspaces",
127
+ "description": "Available Xcode Workspaces",
128
+ "command": "ls -d *.xcworkspace 2>/dev/null",
129
+ "parser": "lines",
130
+ "cacheFor": 60
131
+ },
132
+ {
133
+ "name": "projects",
134
+ "description": "Available Xcode Projects",
135
+ "command": "ls -d *.xcodeproj 2>/dev/null",
136
+ "parser": "lines",
137
+ "cacheFor": 60
138
+ }
139
+ ]
140
+ }
141
+ }
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "yq",
3
+ "description": "Portable command-line YAML processor",
4
+ "category": "Text Processing & Utilities",
5
+ "platforms": [
6
+ "linux",
7
+ "macos",
8
+ "windows"
9
+ ],
10
+ "shells": [
11
+ "bash",
12
+ "zsh",
13
+ "powershell"
14
+ ],
15
+ "subcommands": [
16
+ {
17
+ "name": "eval",
18
+ "shorthand": "e",
19
+ "description": "Evaluate an expression"
20
+ }
21
+ ],
22
+ "globalOptions": [
23
+ {
24
+ "name": "-r",
25
+ "description": "Output raw format"
26
+ },
27
+ {
28
+ "name": "-i",
29
+ "description": "In-place update"
30
+ }
31
+ ],
32
+ "examples": [
33
+ {
34
+ "command": "yq e '.a.b' file.yaml",
35
+ "description": "Read a value"
36
+ },
37
+ {
38
+ "command": "yq e '.a.b = \"new value\"' -i file.yaml",
39
+ "description": "Update a value in place"
40
+ }
41
+ ],
42
+ "relatedCommands": [
43
+ "jq",
44
+ "cat"
45
+ ],
46
+ "contextEngine": {
47
+ "detectors": [
48
+ {
49
+ "name": "yaml_files",
50
+ "description": "YAML files in current directory",
51
+ "command": "ls *.yaml *.yml 2>/dev/null | head -5",
52
+ "parser": "lines",
53
+ "cacheFor": 30
54
+ }
55
+ ]
56
+ }
57
+ }