1pkgs: lib: self: super:
2
3### Deprecated aliases - for backward compatibility
4###
5### !!! NOTE !!!
6### Use `./remove-attr.py [attrname]` in this directory to remove your alias
7### from the `nodePackages` set without regenerating the entire file.
8
9let
10 # Removing recurseForDerivation prevents derivations of aliased attribute
11 # set to appear while listing all the packages available.
12 removeRecurseForDerivations =
13 alias:
14 if alias.recurseForDerivations or false then
15 lib.removeAttrs alias [ "recurseForDerivations" ]
16 else
17 alias;
18
19 # Disabling distribution prevents top-level aliases for non-recursed package
20 # sets from building on Hydra.
21 removeDistribute = alias: if lib.isDerivation alias then lib.dontDistribute alias else alias;
22
23 # Make sure that we are not shadowing something from node-packages.nix.
24 checkInPkgs =
25 n: alias:
26 if builtins.hasAttr n super then throw "Alias ${n} is still in node-packages.nix" else alias;
27
28 mapAliases =
29 aliases:
30 lib.mapAttrs (
31 n: alias: removeDistribute (removeRecurseForDerivations (checkInPkgs n alias))
32 ) aliases;
33in
34
35mapAliases {
36 "@antora/cli" = pkgs.antora; # Added 2023-05-06
37 "@astrojs/language-server" = pkgs.astro-language-server; # Added 2024-02-12
38 "@bitwarden/cli" = pkgs.bitwarden-cli; # added 2023-07-25
39 "@commitlint/config-conventional" =
40 throw "@commitlint/config-conventional has been dropped, as it is a library and your JS project should lock it instead."; # added 2024-12-16
41 "@emacs-eask/cli" = pkgs.eask; # added 2023-08-17
42 "@forge/cli" = throw "@forge/cli was removed because it was broken"; # added 2023-09-20
43 "@google/clasp" = pkgs.google-clasp; # Added 2023-05-07
44 "@maizzle/cli" = pkgs.maizzle; # added 2023-08-17
45 "@medable/mdctl-cli" = throw "@medable/mdctl-cli was removed because it was broken"; # added 2023-08-21
46 "@mermaid-js/mermaid-cli" = pkgs.mermaid-cli; # added 2023-10-01
47 "@nerdwallet/shepherd" = pkgs.shepherd; # added 2023-09-30
48 "@nestjs/cli" = pkgs.nest-cli; # Added 2023-05-06
49 "@prisma/language-server" = throw "@prisma/language-server has been removed because it was broken"; # added 2025-03-23
50 "@shopify/cli" = throw "@shopify/cli has been removed because it was broken"; # added 2025-03-12
51 "@tailwindcss/language-server" = pkgs.tailwindcss-language-server; # added 2024-01-22
52 "@volar/vue-language-server" = pkgs.vue-language-server; # added 2024-06-15
53 "@vue/language-server" = pkgs.vue-language-server; # added 2024-06-15
54 "@withgraphite/graphite-cli" = pkgs.graphite-cli; # added 2024-01-25
55 "@zwave-js/server" = pkgs.zwave-js-server; # Added 2023-09-09
56 antennas = pkgs.antennas; # added 2023-07-30
57 inherit (pkgs) autoprefixer; # added 2024-06-25
58 inherit (pkgs) asar; # added 2023-08-26
59 inherit (pkgs) auto-changelog; # added 2024-06-25
60 inherit (pkgs) aws-azure-login; # added 2023-09-30
61 balanceofsatoshis = pkgs.balanceofsatoshis; # added 2023-07-31
62 inherit (pkgs) bash-language-server; # added 2024-06-07
63 bibtex-tidy = pkgs.bibtex-tidy; # added 2023-07-30
64 bitwarden-cli = pkgs.bitwarden-cli; # added 2023-07-25
65 bower = throw "bower was removed because it was deprecated"; # added 2025-09-17
66 inherit (pkgs) bower2nix; # added 2024-08-23
67 inherit (pkgs) btc-rpc-explorer; # added 2023-08-17
68 inherit (pkgs) carbon-now-cli; # added 2023-08-17
69 inherit (pkgs) carto; # added 2023-08-17
70 castnow = pkgs.castnow; # added 2023-07-30
71 inherit (pkgs) cdktf-cli; # added 2025-10-02
72 inherit (pkgs) clean-css-cli; # added 2023-08-18
73 inherit (pkgs) clubhouse-cli; # added 2023-08-18
74 inherit (pkgs) coc-clangd; # added 2024-06-29
75 inherit (pkgs) coc-css; # added 2024-06-29
76 inherit (pkgs) coc-diagnostic; # added 2024-06-29
77 inherit (pkgs) coc-docker; # added 2025-10-01
78 inherit (pkgs) coc-explorer; # added 2025-10-01
79 inherit (pkgs) coc-git; # added 2025-10-01
80 coc-imselect = throw "coc-imselect was removed because it was broken"; # added 2023-08-21
81 inherit (pkgs) coc-pyright; # added 2024-07-14
82 coc-metals = throw "coc-metals was removed because it was deprecated upstream. vimPlugins.nvim-metals is its official replacement."; # Added 2024-10-16
83 coc-python = throw "coc-python was removed because it was abandoned upstream on 2020-12-24. Upstream now recommends using coc-pyright or coc-jedi instead."; # added 2024-10-15
84 coc-rls = throw "coc-rls was removed because rls was deprecated in 2022. You should use coc-rust-analyzer instead, as rust-analyzer is maintained."; # added 2025-10-01
85 inherit (pkgs) coc-sh; # added 2025-10-02
86 inherit (pkgs) coc-spell-checker; # added 2025-10-01
87 inherit (pkgs) coc-toml;
88 coc-tslint = throw "coc-tslint was removed because it was deprecated upstream; coc-eslint offers comparable features for eslint, which replaced tslint"; # Added 2024-10-18
89 coc-tslint-plugin = throw "coc-tslint-plugin was removed because it was deprecated upstream; coc-eslint offers comparable features for eslint, which replaced tslint"; # Added 2024-10-18
90 coc-vetur = throw "coc-vetur was removed because vetur was deprecated by Vue in favor of volar. Use coc-volar instead, which supports Vue 3"; # added 2025-10-01
91 coinmon = throw "coinmon was removed since it was abandoned upstream"; # added 2024-03-19
92 coffee-script = pkgs.coffeescript; # added 2023-08-18
93 inherit (pkgs) concurrently; # added 2024-08-05
94 inherit (pkgs) configurable-http-proxy; # added 2023-08-19
95 copy-webpack-plugin = throw "copy-webpack-plugin was removed because it is a JS library, so your project should lock it with a JS package manager instead."; # Added 2024-12-16
96 inherit (pkgs) cordova; # added 2023-08-18
97 inherit (pkgs) create-react-app; # added 2023-09-25
98 create-react-native-app = throw "create-react-native-app was removed because it was deprecated. Upstream suggests using a framework for React Native."; # added 2024-12-08
99 inherit (pkgs) cspell;
100 dat = throw "dat was removed because it was broken"; # added 2023-08-21
101 inherit (pkgs) degit; # added 2023-08-18
102 inherit (pkgs) diagnostic-languageserver; # added 2024-06-25
103 inherit (pkgs) dockerfile-language-server-nodejs; # added 2023-08-18
104 inherit (pkgs) dotenv-cli; # added 2024-06-26
105 eask = pkgs.eask; # added 2023-08-17
106 inherit (pkgs.elmPackages) elm-test;
107 inherit (pkgs.elmPackages) elm-review;
108 escape-string-regexp = throw "escape-string-regexp was removed because it provides no executable"; # added 2025-03-12
109 inherit (pkgs) eslint; # Added 2024-08-28
110 inherit (pkgs) eslint_d; # Added 2023-05-26
111 inherit (pkgs) eas-cli; # added 2025-01-08
112 expo-cli = throw "expo-cli was removed because it was deprecated upstream. Use `npx expo` or eas-cli instead."; # added 2024-12-02
113 inherit (pkgs) firebase-tools; # added 2023-08-18
114 inherit (pkgs) fixjson; # added 2024-06-26
115 flood = pkgs.flood; # Added 2023-07-25
116 ganache = throw "ganache was removed because it was deprecated upstream"; # added 2024-12-02
117 generator-code = throw "generator-code was removed because it provides no executable"; # added 2023-09-24
118 inherit (pkgs) git-run; # added 2024-06-26
119 git-ssb = throw "git-ssb was removed because it was broken"; # added 2023-08-21
120 inherit (pkgs) git-standup; # added 2024-06-26
121 inherit (pkgs) gitmoji-cli; # added 2023-09-23
122 glob = pkgs.node-glob; # added 2023-08-18
123 inherit (pkgs) get-graphql-schema; # added 2024-06-26
124 inherit (pkgs) gqlint; # added 2023-08-19
125 inherit (pkgs) gramma; # added 2024-06-26
126 grammarly-languageserver = throw "grammarly-languageserver was removed because it requires EOL Node.js 16"; # added 2024-07-15
127 inherit (pkgs) graphite-cli; # added 2024-01-25
128 inherit (pkgs) graphql-language-service-cli; # added 2025-03-17
129 inherit (pkgs) graphqurl; # added 2023-08-19
130 gtop = pkgs.gtop; # added 2023-07-31
131 hs-client = pkgs.hsd; # added 2023-08-20
132 inherit (pkgs) hsd; # added 2023-08-19
133 inherit (pkgs) html-minifier; # added 2023-08-19
134 inherit (pkgs) htmlhint; # added 2023-08-19
135 inherit (pkgs) http-server; # added 2024-01-20
136 hueadm = pkgs.hueadm; # added 2023-07-31
137 inherit (pkgs) hyperpotamus; # added 2023-08-19
138 ijavascript = throw "ijavascript has been removed because it was broken"; # added 2025-03-18
139 immich = pkgs.immich-cli; # added 2023-08-19
140 indium = throw "indium was removed because it was broken"; # added 2023-08-19
141 inliner = throw "inliner was removed because it was abandoned upstream"; # added 2024-08-23
142 inherit (pkgs) intelephense; # added 2024-08-31
143 insect = throw "insect was removed becuase it was deprecated by upstream. Use numbat instead."; # added 2024-12-02
144 ionic = throw "ionic was replaced by @ionic/cli"; # added 2023-08-19
145 inherit (pkgs) jake; # added 2023-08-19
146 inherit (pkgs) javascript-typescript-langserver; # added 2023-08-19
147 inherit (pkgs) kaput-cli; # added 2024-12-03
148 karma = pkgs.karma-runner; # added 2023-07-29
149 leetcode-cli = self.vsc-leetcode-cli; # added 2023-08-31
150 inherit (pkgs) lerna; # added 2025-02-12
151 less = pkgs.lessc; # added 2024-06-15
152 less-plugin-clean-css = pkgs.lessc.plugins.clean-css; # added 2024-06-15
153 lodash = throw "lodash was removed because it provides no executable"; # added 2025-03-18
154 inherit (pkgs) lv_font_conv; # added 2024-06-28
155 manta = pkgs.node-manta; # Added 2023-05-06
156 inherit (pkgs) markdown-link-check; # added 2024-06-28
157 markdownlint-cli = pkgs.markdownlint-cli; # added 2023-07-29
158 inherit (pkgs) markdownlint-cli2; # added 2023-08-22
159 inherit (pkgs) mathjax-node-cli; # added 2023-11-02
160 mdctl-cli = self."@medable/mdctl-cli"; # added 2023-08-21
161 inherit (pkgs) mermaid-cli; # added 2023-10-01
162 meshcommander = throw "meshcommander was removed because it was abandoned upstream"; # added 2024-12-02
163 musescore-downloader = pkgs.dl-librescore; # added 2023-08-19
164 inherit (pkgs) near-cli; # added 2023-09-09
165 neovim = pkgs.neovim-node-client; # added 2024-11-13
166 node-inspector = throw "node-inspector was removed because it was broken"; # added 2023-08-21
167 inherit (pkgs) node-gyp; # added 2024-08-13
168 inherit (pkgs) node-pre-gyp; # added 2024-08-05
169 inherit (pkgs) node-red; # added 2024-10-06
170 inherit (pkgs) nodemon; # added 2024-06-28
171 npm = pkgs.nodejs.overrideAttrs (old: {
172 meta = old.meta // {
173 mainProgram = "npm";
174 };
175 }); # added 2024-10-04
176 inherit (pkgs) npm-check-updates; # added 2023-08-22
177 ocaml-language-server = throw "ocaml-language-server was removed because it was abandoned upstream"; # added 2023-09-04
178 orval = throw "orval has been removed because it was broken"; # added 2025-03-23
179 parcel = throw "parcel has been removed because it was broken"; # added 2025-03-12
180 parcel-bundler = self.parcel; # added 2023-09-04
181 inherit (pkgs) patch-package; # added 2024-06-29
182 pkg = pkgs.vercel-pkg; # added 2023-10-04
183 inherit (pkgs) pm2; # added 2024-01-22
184 inherit (pkgs) pnpm; # added 2024-06-26
185 postcss-cli = throw "postcss-cli has been removed because it was broken"; # added 2025-03-24
186 inherit (pkgs) prettier; # added 2025-05-31
187 prettier_d_slim = pkgs.prettier-d-slim; # added 2023-09-14
188 prettier-plugin-toml = throw "prettier-plugin-toml was removed because it provides no executable"; # added 2025-03-23
189 inherit (pkgs) prisma; # added 2024-08-31
190 inherit (pkgs) pxder; # added 2023-09-26
191 inherit (pkgs) quicktype; # added 2023-09-09
192 react-native-cli = throw "react-native-cli was removed because it was deprecated"; # added 2023-09-25
193 inherit (pkgs) react-static; # added 2023-08-21
194 react-tools = throw "react-tools was removed because it was deprecated"; # added 2023-09-25
195 readability-cli = pkgs.readability-cli; # Added 2023-06-12
196 inherit (pkgs) redoc-cli; # added 2023-09-12
197 remod-cli = pkgs.remod; # added 2024-12-04
198 "reveal.js" = throw "reveal.js was removed because it provides no executable"; # added 2025-03-23
199 reveal-md = pkgs.reveal-md; # added 2023-07-31
200 rimraf = throw "rimraf was removed because it is a library, and your project should lock it instead."; # added 2025-05-28
201 rollup = throw "rollup has been removed because it was broken"; # added 2025-04-28
202 inherit (pkgs) rtlcss; # added 2023-08-29
203 s3http = throw "s3http was removed because it was abandoned upstream"; # added 2023-08-18
204 inherit (pkgs) serve; # added 2025-08-27
205 inherit (pkgs) serverless; # Added 2023-11-29
206 shout = throw "shout was removed because it was deprecated upstream in favor of thelounge."; # Added 2024-10-19
207 inherit (pkgs) snyk; # Added 2023-08-30
208 "socket.io" = throw "socket.io was removed because it provides no executable"; # added 2025-03-23
209 inherit (pkgs) sql-formatter; # added 2024-06-29
210 "@squoosh/cli" = throw "@squoosh/cli was removed because it was abandoned upstream"; # added 2023-09-02
211 ssb-server = throw "ssb-server was removed because it was broken"; # added 2023-08-21
212 stackdriver-statsd-backend = throw "stackdriver-statsd-backend was removed because Stackdriver is now discontinued"; # added 2024-12-02
213 stf = throw "stf was removed because it was broken"; # added 2023-08-21
214 inherit (pkgs) stylelint; # added 2023-09-13
215 surge = pkgs.surge-cli; # Added 2023-09-08
216 inherit (pkgs) svelte-language-server; # Added 2024-05-12
217 inherit (pkgs) svgo; # added 2025-08-24
218 swagger = throw "swagger was removed because it was broken and abandoned upstream"; # added 2023-09-09
219 inherit (pkgs) tailwindcss; # added 2024-12-04
220 teck-programmer = throw "teck-programmer was removed because it was broken and unmaintained"; # added 2024-08-23
221 tedicross = throw "tedicross was removed because it was broken"; # added 2023-09-09
222 inherit (pkgs) terser; # Added 2023-08-31
223 inherit (pkgs) textlint; # Added 2024-05-13
224 textlint-plugin-latex = throw "textlint-plugin-latex was removed because it is unmaintained for years. Please use textlint-plugin-latex2e instead."; # Added 2024-05-17
225 inherit (pkgs) textlint-rule-abbr-within-parentheses; # Added 2024-05-17
226 inherit (pkgs) textlint-rule-alex; # Added 2024-05-16
227 inherit (pkgs) textlint-rule-common-misspellings; # Added 2024-05-25
228 inherit (pkgs) textlint-rule-diacritics; # Added 2024-05-16
229 inherit (pkgs) textlint-rule-en-max-word-count; # Added 2024-05-17
230 inherit (pkgs) textlint-rule-max-comma; # Added 2024-05-15
231 inherit (pkgs) textlint-rule-no-start-duplicated-conjunction; # Added 2024-05-17
232 inherit (pkgs) textlint-rule-period-in-list-item; # Added 2024-05-17
233 inherit (pkgs) textlint-rule-stop-words; # Added 2024-05-17
234 inherit (pkgs) textlint-rule-terminology; # Added 2024-05-17
235 inherit (pkgs) textlint-rule-unexpanded-acronym; # Added 2024-05-17
236 inherit (pkgs) textlint-rule-write-good; # Added 2024-05-16
237 thelounge = pkgs.thelounge; # Added 2023-05-22
238 thelounge-plugin-closepms = throw "thelounge-plugin-closepms has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
239 thelounge-plugin-giphy = throw "thelounge-plugin-giphy has been removed because thelounge moved out of nodePackages"; # added 2025-03-12
240 thelounge-plugin-shortcuts = throw "thelounge-plugin-shortcuts has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
241 thelounge-theme-abyss = throw "thelounge-theme-abyss has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
242 thelounge-theme-amoled = throw "thelounge-theme-amoled has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
243 thelounge-theme-amoled-sourcecodepro = throw "thelounge-theme-amoled-sourcecodepro has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
244 thelounge-theme-bdefault = throw "thelounge-theme-bdefault has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
245 thelounge-theme-bmorning = throw "thelounge-theme-bmorning has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
246 thelounge-theme-chord = throw "thelounge-theme-chord has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
247 thelounge-theme-classic = throw "thelounge-theme-classic has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
248 thelounge-theme-common = throw "thelounge-theme-common has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
249 thelounge-theme-crypto = throw "thelounge-theme-crypto has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
250 thelounge-theme-discordapp = throw "thelounge-theme-discordapp has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
251 thelounge-theme-dracula = throw "thelounge-theme-dracula has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
252 thelounge-theme-dracula-official = throw "thelounge-theme-dracula-official has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
253 thelounge-theme-flat-blue = throw "thelounge-theme-flat-blue has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
254 thelounge-theme-flat-dark = throw "thelounge-theme-flat-dark has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
255 thelounge-theme-gruvbox = throw "thelounge-theme-gruvbox has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
256 thelounge-theme-hexified = throw "thelounge-theme-hexified has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
257 thelounge-theme-ion = throw "thelounge-theme-ion has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
258 thelounge-theme-light = throw "thelounge-theme-light has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
259 thelounge-theme-midnight = throw "thelounge-theme-midnight has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
260 thelounge-theme-mininapse = throw "thelounge-theme-mininapse has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
261 thelounge-theme-monokai-console = throw "thelounge-theme-monokai-console has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
262 thelounge-theme-mortified = throw "thelounge-theme-mortified has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
263 thelounge-theme-neuron-fork = throw "thelounge-theme-neuron-fork has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
264 thelounge-theme-new-morning = throw "thelounge-theme-new-morning has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
265 thelounge-theme-new-morning-compact = throw "thelounge-theme-new-morning-compact has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
266 thelounge-theme-nologo = throw "thelounge-theme-nologo has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
267 thelounge-theme-nord = throw "thelounge-theme-nord has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
268 thelounge-theme-onedark = throw "thelounge-theme-onedark has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
269 thelounge-theme-purplenight = throw "thelounge-theme-purplenight has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
270 thelounge-theme-scoutlink = throw "thelounge-theme-scoutlink has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
271 thelounge-theme-seraphimrp = throw "thelounge-theme-seraphimrp has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
272 thelounge-theme-solarized = throw "thelounge-theme-solarized has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
273 thelounge-theme-solarized-fork-monospace = throw "thelounge-theme-solarized-fork-monospace has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
274 thelounge-theme-zenburn = throw "thelounge-theme-zenburn has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
275 thelounge-theme-zenburn-monospace = throw "thelounge-theme-zenburn-monospace has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
276 thelounge-theme-zenburn-sourcecodepro = throw "thelounge-theme-zenburn-sourcecodepro has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
277 three = throw "three was removed because it was no longer needed"; # Added 2023-09-08
278 triton = pkgs.triton; # Added 2023-05-06
279 typescript = pkgs.typescript; # Added 2023-06-21
280 inherit (pkgs) typescript-language-server; # added 2024-02-27
281 inherit (pkgs) uglify-js; # added 2024-06-15
282 inherit (pkgs) undollar; # added 2024-06-29
283 inherit (pkgs) ungit; # added 2023-08-20
284 unified-language-server = throw "unified-language-server was removed as it is a library that should be imported within a Javascript project, not an end-user tool"; # added 2025-10-02
285 inherit (pkgs) vim-language-server; # added 2024-06-25
286 vls = throw "vls has been deprecated by upstream as vetur is also deprecated. Upstream suggests migrating to Volar for Vue LSP tooling instead."; # added 2024-12-09
287 inherit (pkgs) vsc-leetcode-cli; # Added 2023-08-30
288 vscode-css-languageserver-bin = throw "vscode-css-languageserver-bin has been removed since the upstream repository is archived; consider using vscode-langservers-extracted instead."; # added 2024-06-26
289 vscode-html-languageserver-bin = throw "vscode-html-languageserver-bin has been removed since the upstream repository is archived; consider using vscode-langservers-extracted instead."; # added 2024-06-26
290 inherit (pkgs) vscode-json-languageserver; # added 2025-06-19
291 vscode-json-languageserver-bin = throw "vscode-json-languageserver-bin has been removed since the upstream repository is archived; consider using vscode-langservers-extracted instead."; # added 2024-06-26
292 vscode-langservers-extracted = pkgs.vscode-langservers-extracted; # Added 2023-05-27
293 vue-language-server = self.vls; # added 2023-08-20
294 vue-cli = throw "vue-cli has been removed since upstream no longer recommends using it; consider using create-vue and the new Vite-based tooling instead."; # added 2024-07-12
295 inherit (pkgs) web-ext; # added 2023-08-20
296 inherit (pkgs) webpack-cli; # added 2024-12-03
297 webpack-dev-server = throw "webpack-dev-server has been removed. You should install it in your JS project instead."; # added 2024-12-05
298 webtorrent-cli = throw "webtorrent-cli has been removed because it was broken"; # added 2025-03-12
299 inherit (pkgs) wrangler; # added 2024-07-01
300 inherit (pkgs) write-good; # added 2023-08-20
301 inherit (pkgs) yalc; # added 2024-06-29
302 inherit (pkgs) yaml-language-server; # added 2023-09-05
303 inherit (pkgs) yarn; # added 2024-08-13
304 inherit (pkgs) yo; # added 2023-08-20
305 zx = pkgs.zx; # added 2023-08-01
306}