@shell-shock/plugin-completions 0.1.14 → 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/dist/components/bash-command.cjs +101 -25
- package/dist/components/bash-command.d.cts +2 -2
- package/dist/components/bash-command.d.cts.map +1 -1
- package/dist/components/bash-command.d.mts +2 -2
- package/dist/components/bash-command.d.mts.map +1 -1
- package/dist/components/bash-command.mjs +101 -25
- package/dist/components/bash-command.mjs.map +1 -1
- package/dist/components/fish-command.cjs +402 -0
- package/dist/components/fish-command.d.cts +10 -0
- package/dist/components/fish-command.d.cts.map +1 -0
- package/dist/components/fish-command.d.mts +10 -0
- package/dist/components/fish-command.d.mts.map +1 -0
- package/dist/components/fish-command.mjs +403 -0
- package/dist/components/fish-command.mjs.map +1 -0
- package/dist/components/index.cjs +4 -0
- package/dist/components/index.d.cts +3 -1
- package/dist/components/index.d.mts +3 -1
- package/dist/components/index.mjs +3 -1
- package/dist/components/powershell-command.cjs +418 -0
- package/dist/components/powershell-command.d.cts +10 -0
- package/dist/components/powershell-command.d.cts.map +1 -0
- package/dist/components/powershell-command.d.mts +10 -0
- package/dist/components/powershell-command.d.mts.map +1 -0
- package/dist/components/powershell-command.mjs +419 -0
- package/dist/components/powershell-command.mjs.map +1 -0
- package/dist/components/zsh-command.cjs +213 -26
- package/dist/components/zsh-command.d.cts.map +1 -1
- package/dist/components/zsh-command.d.mts +2 -2
- package/dist/components/zsh-command.d.mts.map +1 -1
- package/dist/components/zsh-command.mjs +213 -26
- package/dist/components/zsh-command.mjs.map +1 -1
- package/dist/helpers/complete-command.cjs +14 -0
- package/dist/helpers/complete-command.d.cts +5 -0
- package/dist/helpers/complete-command.d.cts.map +1 -0
- package/dist/helpers/complete-command.d.mts +5 -0
- package/dist/helpers/complete-command.d.mts.map +1 -0
- package/dist/helpers/complete-command.mjs +14 -0
- package/dist/helpers/complete-command.mjs.map +1 -0
- package/dist/helpers/completion-directive-constants.cjs +15 -0
- package/dist/helpers/completion-directive-constants.d.cts +14 -0
- package/dist/helpers/completion-directive-constants.d.cts.map +1 -0
- package/dist/helpers/completion-directive-constants.d.mts +14 -0
- package/dist/helpers/completion-directive-constants.d.mts.map +1 -0
- package/dist/helpers/completion-directive-constants.mjs +15 -0
- package/dist/helpers/completion-directive-constants.mjs.map +1 -0
- package/dist/helpers/index.cjs +5 -0
- package/dist/helpers/index.d.cts +3 -0
- package/dist/helpers/index.d.mts +3 -0
- package/dist/helpers/index.mjs +4 -0
- package/dist/index.cjs +42 -5
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +42 -5
- package/dist/index.mjs.map +1 -1
- package/dist/types/index.d.cts +1 -1
- package/dist/types/index.d.mts +1 -1
- package/dist/types/plugin.d.cts +16 -3
- package/dist/types/plugin.d.cts.map +1 -1
- package/dist/types/plugin.d.mts +16 -3
- package/dist/types/plugin.d.mts.map +1 -1
- package/dist/types/shell-type.cjs +6 -1
- package/dist/types/shell-type.d.cts +1 -1
- package/dist/types/shell-type.d.mts +1 -1
- package/dist/types/shell-type.mjs +6 -1
- package/dist/types/shell-type.mjs.map +1 -1
- package/package.json +79 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shell-shock/plugin-completions",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Shell Shock plugin to generate source code given a list design tokens.",
|
|
6
6
|
"repository": {
|
|
@@ -83,6 +83,34 @@
|
|
|
83
83
|
"default": "./dist/components/bash-command.mjs"
|
|
84
84
|
}
|
|
85
85
|
},
|
|
86
|
+
"./components/fish-command": {
|
|
87
|
+
"require": {
|
|
88
|
+
"types": "./dist/components/fish-command.d.cts",
|
|
89
|
+
"default": "./dist/components/fish-command.cjs"
|
|
90
|
+
},
|
|
91
|
+
"import": {
|
|
92
|
+
"types": "./dist/components/fish-command.d.mts",
|
|
93
|
+
"default": "./dist/components/fish-command.mjs"
|
|
94
|
+
},
|
|
95
|
+
"default": {
|
|
96
|
+
"types": "./dist/components/fish-command.d.mts",
|
|
97
|
+
"default": "./dist/components/fish-command.mjs"
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"./components/powershell-command": {
|
|
101
|
+
"require": {
|
|
102
|
+
"types": "./dist/components/powershell-command.d.cts",
|
|
103
|
+
"default": "./dist/components/powershell-command.cjs"
|
|
104
|
+
},
|
|
105
|
+
"import": {
|
|
106
|
+
"types": "./dist/components/powershell-command.d.mts",
|
|
107
|
+
"default": "./dist/components/powershell-command.mjs"
|
|
108
|
+
},
|
|
109
|
+
"default": {
|
|
110
|
+
"types": "./dist/components/powershell-command.d.mts",
|
|
111
|
+
"default": "./dist/components/powershell-command.mjs"
|
|
112
|
+
}
|
|
113
|
+
},
|
|
86
114
|
"./components/zsh-command": {
|
|
87
115
|
"require": {
|
|
88
116
|
"types": "./dist/components/zsh-command.d.cts",
|
|
@@ -97,6 +125,48 @@
|
|
|
97
125
|
"default": "./dist/components/zsh-command.mjs"
|
|
98
126
|
}
|
|
99
127
|
},
|
|
128
|
+
"./helpers": {
|
|
129
|
+
"require": {
|
|
130
|
+
"types": "./dist/helpers/index.d.cts",
|
|
131
|
+
"default": "./dist/helpers/index.cjs"
|
|
132
|
+
},
|
|
133
|
+
"import": {
|
|
134
|
+
"types": "./dist/helpers/index.d.mts",
|
|
135
|
+
"default": "./dist/helpers/index.mjs"
|
|
136
|
+
},
|
|
137
|
+
"default": {
|
|
138
|
+
"types": "./dist/helpers/index.d.mts",
|
|
139
|
+
"default": "./dist/helpers/index.mjs"
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"./helpers/complete-command": {
|
|
143
|
+
"require": {
|
|
144
|
+
"types": "./dist/helpers/complete-command.d.cts",
|
|
145
|
+
"default": "./dist/helpers/complete-command.cjs"
|
|
146
|
+
},
|
|
147
|
+
"import": {
|
|
148
|
+
"types": "./dist/helpers/complete-command.d.mts",
|
|
149
|
+
"default": "./dist/helpers/complete-command.mjs"
|
|
150
|
+
},
|
|
151
|
+
"default": {
|
|
152
|
+
"types": "./dist/helpers/complete-command.d.mts",
|
|
153
|
+
"default": "./dist/helpers/complete-command.mjs"
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"./helpers/completion-directive-constants": {
|
|
157
|
+
"require": {
|
|
158
|
+
"types": "./dist/helpers/completion-directive-constants.d.cts",
|
|
159
|
+
"default": "./dist/helpers/completion-directive-constants.cjs"
|
|
160
|
+
},
|
|
161
|
+
"import": {
|
|
162
|
+
"types": "./dist/helpers/completion-directive-constants.d.mts",
|
|
163
|
+
"default": "./dist/helpers/completion-directive-constants.mjs"
|
|
164
|
+
},
|
|
165
|
+
"default": {
|
|
166
|
+
"types": "./dist/helpers/completion-directive-constants.d.mts",
|
|
167
|
+
"default": "./dist/helpers/completion-directive-constants.mjs"
|
|
168
|
+
}
|
|
169
|
+
},
|
|
100
170
|
"./package.json": "./package.json",
|
|
101
171
|
"./types": {
|
|
102
172
|
"require": {
|
|
@@ -154,15 +224,16 @@
|
|
|
154
224
|
"dependencies": {
|
|
155
225
|
"@alloy-js/core": "0.23.0-dev.8",
|
|
156
226
|
"@alloy-js/typescript": "0.23.0-dev.4",
|
|
157
|
-
"@powerlines/deepkit": "^0.6.
|
|
158
|
-
"@powerlines/plugin-alloy": "^0.23.
|
|
159
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
160
|
-
"@shell-shock/core": "^0.9.
|
|
227
|
+
"@powerlines/deepkit": "^0.6.70",
|
|
228
|
+
"@powerlines/plugin-alloy": "^0.23.20",
|
|
229
|
+
"@powerlines/plugin-plugin": "^0.12.241",
|
|
230
|
+
"@shell-shock/core": "^0.9.7",
|
|
161
231
|
"@stryke/path": "0.26.6",
|
|
162
|
-
"
|
|
232
|
+
"@stryke/string-format": "0.14.2",
|
|
233
|
+
"powerlines": "^0.38.57"
|
|
163
234
|
},
|
|
164
235
|
"devDependencies": {
|
|
165
|
-
"@powerlines/plugin-deepkit": "^0.11.
|
|
236
|
+
"@powerlines/plugin-deepkit": "^0.11.169",
|
|
166
237
|
"@types/node": "^25.3.1"
|
|
167
238
|
},
|
|
168
239
|
"publishConfig": {
|
|
@@ -180,5 +251,5 @@
|
|
|
180
251
|
"./package.json": "./package.json"
|
|
181
252
|
}
|
|
182
253
|
},
|
|
183
|
-
"gitHead": "
|
|
254
|
+
"gitHead": "169e28edb54c3e7e189cab2fa0797143a8f76c6f"
|
|
184
255
|
}
|