initial commit

This commit is contained in:
2026-04-05 16:08:59 +03:00
commit 75ab9bec9f
1117 changed files with 789034 additions and 0 deletions

10
editor/node_modules/consola/lib/index.cjs generated vendored Normal file
View File

@@ -0,0 +1,10 @@
// eslint-disable-next-line @typescript-eslint/no-require-imports
const lib = require("../dist/index.cjs");
module.exports = lib.consola;
for (const key in lib) {
if (!(key in module.exports)) {
module.exports[key] = lib[key];
}
}