Add comprehensive development roadmap via GitHub Issues
Created 10 detailed GitHub issues covering: - Project activation and management UI (#1-2) - Worker node coordination and visualization (#3-4) - Automated GitHub repository scanning (#5) - Intelligent model-to-issue matching (#6) - Multi-model task execution system (#7) - N8N workflow integration (#8) - Hive-Bzzz P2P bridge (#9) - Peer assistance protocol (#10) Each issue includes detailed specifications, acceptance criteria, technical implementation notes, and dependency mapping. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
19
frontend/node_modules/@storybook/global/LICENSE
generated
vendored
Normal file
19
frontend/node_modules/@storybook/global/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
Copyright (c) 2022 Norbert de Langen.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
13
frontend/node_modules/@storybook/global/README.md
generated
vendored
Normal file
13
frontend/node_modules/@storybook/global/README.md
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
# global
|
||||
|
||||
Require global variables
|
||||
|
||||
## Example
|
||||
|
||||
```js
|
||||
import { global } from "global";
|
||||
```
|
||||
|
||||
## Installation
|
||||
|
||||
`yarn add @storybook/global`
|
||||
3
frontend/node_modules/@storybook/global/dist/index.d.ts
generated
vendored
Normal file
3
frontend/node_modules/@storybook/global/dist/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
declare const scope: typeof globalThis;
|
||||
|
||||
export { scope as global };
|
||||
44
frontend/node_modules/@storybook/global/dist/index.js
generated
vendored
Normal file
44
frontend/node_modules/@storybook/global/dist/index.js
generated
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
"use strict";
|
||||
var __defProp = Object.defineProperty;
|
||||
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
||||
var __getOwnPropNames = Object.getOwnPropertyNames;
|
||||
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
||||
var __export = (target, all) => {
|
||||
for (var name in all)
|
||||
__defProp(target, name, { get: all[name], enumerable: true });
|
||||
};
|
||||
var __copyProps = (to, from, except, desc) => {
|
||||
if (from && typeof from === "object" || typeof from === "function") {
|
||||
for (let key of __getOwnPropNames(from))
|
||||
if (!__hasOwnProp.call(to, key) && key !== except)
|
||||
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
||||
}
|
||||
return to;
|
||||
};
|
||||
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
||||
|
||||
// src/index.ts
|
||||
var src_exports = {};
|
||||
__export(src_exports, {
|
||||
global: () => scope
|
||||
});
|
||||
module.exports = __toCommonJS(src_exports);
|
||||
var scope = (() => {
|
||||
let win;
|
||||
if (typeof window !== "undefined") {
|
||||
win = window;
|
||||
} else if (typeof globalThis !== "undefined") {
|
||||
win = globalThis;
|
||||
} else if (typeof global !== "undefined") {
|
||||
win = global;
|
||||
} else if (typeof self !== "undefined") {
|
||||
win = self;
|
||||
} else {
|
||||
win = {};
|
||||
}
|
||||
return win;
|
||||
})();
|
||||
// Annotate the CommonJS export names for ESM import in node:
|
||||
0 && (module.exports = {
|
||||
global
|
||||
});
|
||||
19
frontend/node_modules/@storybook/global/dist/index.mjs
generated
vendored
Normal file
19
frontend/node_modules/@storybook/global/dist/index.mjs
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
// src/index.ts
|
||||
var scope = (() => {
|
||||
let win;
|
||||
if (typeof window !== "undefined") {
|
||||
win = window;
|
||||
} else if (typeof globalThis !== "undefined") {
|
||||
win = globalThis;
|
||||
} else if (typeof global !== "undefined") {
|
||||
win = global;
|
||||
} else if (typeof self !== "undefined") {
|
||||
win = self;
|
||||
} else {
|
||||
win = {};
|
||||
}
|
||||
return win;
|
||||
})();
|
||||
export {
|
||||
scope as global
|
||||
};
|
||||
45
frontend/node_modules/@storybook/global/package.json
generated
vendored
Normal file
45
frontend/node_modules/@storybook/global/package.json
generated
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"name": "@storybook/global",
|
||||
"version": "5.0.0",
|
||||
"description": "Require global variables",
|
||||
"keywords": [],
|
||||
"homepage": "https://github.com/storybookjs/global",
|
||||
"repository": "git://github.com/storybookjs/global.git",
|
||||
"license": "MIT",
|
||||
"author": "Norbert <ndelangen@me.com>",
|
||||
"sideEffects": false,
|
||||
"exports": {
|
||||
".": {
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs",
|
||||
"types": "./dist/index.d.ts"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"main": "dist/index.js",
|
||||
"module": "dist/index.mjs",
|
||||
"types": "dist/index.d.ts",
|
||||
"files": [
|
||||
"dist/**/*",
|
||||
"README.md",
|
||||
"*.js",
|
||||
"*.d.ts"
|
||||
],
|
||||
"scripts": {
|
||||
"prep": "tsup ./src/index.ts "
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^18.11.10",
|
||||
"@typescript-eslint/eslint-plugin": "^5.45.0",
|
||||
"@typescript-eslint/parser": "^5.45.0",
|
||||
"eslint": "^8.29.0",
|
||||
"eslint-config-prettier": "^8.5.0",
|
||||
"eslint-plugin-prettier": "^4.2.1",
|
||||
"prettier": "^2.8.0",
|
||||
"tsup": "^6.5.0",
|
||||
"typescript": "^4.9.3"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user