Erster Docker-Stand

This commit is contained in:
Ali
2026-02-20 16:06:40 +09:00
commit f31e2e8ed3
8818 changed files with 1605323 additions and 0 deletions

View File

@@ -0,0 +1,176 @@
'use strict'
const isObject = (val) => val !== null && typeof val === 'object' && !Array.isArray(val)
// this is a modified version of https://github.com/chalk/ansi-regex (MIT License)
const ANSI_REGEX =
/* eslint-disable-next-line no-control-regex */
/[\u001b\u009b][[\]#;?()]*(?:(?:(?:[^\W_]*;?[^\W_]*)\u0007)|(?:(?:[0-9]{1,4}(;[0-9]{0,4})*)?[~0-9=<>cf-nqrtyA-PRZ]))/g
const create = () => {
const colors = { enabled: true, visible: true, styles: {}, keys: {} }
if ('FORCE_COLOR' in process.env) {
colors.enabled = process.env.FORCE_COLOR !== '0'
}
const ansi = (style) => {
let open = (style.open = `\u001b[${style.codes[0]}m`)
let close = (style.close = `\u001b[${style.codes[1]}m`)
let regex = (style.regex = new RegExp(`\\u001b\\[${style.codes[1]}m`, 'g'))
style.wrap = (input, newline) => {
if (input.includes(close)) input = input.replace(regex, close + open)
let output = open + input + close
// see https://github.com/chalk/chalk/pull/92, thanks to the
// chalk contributors for this fix. However, we've confirmed that
// this issue is also present in Windows terminals
return newline ? output.replace(/\r*\n/g, `${close}$&${open}`) : output
}
return style
}
const wrap = (style, input, newline) => {
return typeof style === 'function' ? style(input) : style.wrap(input, newline)
}
const style = (input, stack) => {
if (input === '' || input == null) return ''
if (colors.enabled === false) return input
if (colors.visible === false) return ''
let str = '' + input
let nl = str.includes('\n')
let n = stack.length
if (n > 0 && stack.includes('unstyle')) {
stack = [...new Set(['unstyle', ...stack])].reverse()
}
while (n-- > 0) str = wrap(colors.styles[stack[n]], str, nl)
return str
}
const define = (name, codes, type) => {
colors.styles[name] = ansi({ name, codes })
let keys = colors.keys[type] || (colors.keys[type] = [])
keys.push(name)
Reflect.defineProperty(colors, name, {
configurable: true,
enumerable: true,
set(value) {
colors.alias(name, value)
},
get() {
let color = (input) => style(input, color.stack)
Reflect.setPrototypeOf(color, colors)
color.stack = this.stack ? this.stack.concat(name) : [name]
return color
},
})
}
define('reset', [0, 0], 'modifier')
define('bold', [1, 22], 'modifier')
define('dim', [2, 22], 'modifier')
define('italic', [3, 23], 'modifier')
define('underline', [4, 24], 'modifier')
define('inverse', [7, 27], 'modifier')
define('hidden', [8, 28], 'modifier')
define('strikethrough', [9, 29], 'modifier')
define('black', [30, 39], 'color')
define('red', [31, 39], 'color')
define('green', [32, 39], 'color')
define('yellow', [33, 39], 'color')
define('blue', [34, 39], 'color')
define('magenta', [35, 39], 'color')
define('cyan', [36, 39], 'color')
define('white', [37, 39], 'color')
define('gray', [90, 39], 'color')
define('grey', [90, 39], 'color')
define('bgBlack', [40, 49], 'bg')
define('bgRed', [41, 49], 'bg')
define('bgGreen', [42, 49], 'bg')
define('bgYellow', [43, 49], 'bg')
define('bgBlue', [44, 49], 'bg')
define('bgMagenta', [45, 49], 'bg')
define('bgCyan', [46, 49], 'bg')
define('bgWhite', [47, 49], 'bg')
define('blackBright', [90, 39], 'bright')
define('redBright', [91, 39], 'bright')
define('greenBright', [92, 39], 'bright')
define('yellowBright', [93, 39], 'bright')
define('blueBright', [94, 39], 'bright')
define('magentaBright', [95, 39], 'bright')
define('cyanBright', [96, 39], 'bright')
define('whiteBright', [97, 39], 'bright')
define('bgBlackBright', [100, 49], 'bgBright')
define('bgRedBright', [101, 49], 'bgBright')
define('bgGreenBright', [102, 49], 'bgBright')
define('bgYellowBright', [103, 49], 'bgBright')
define('bgBlueBright', [104, 49], 'bgBright')
define('bgMagentaBright', [105, 49], 'bgBright')
define('bgCyanBright', [106, 49], 'bgBright')
define('bgWhiteBright', [107, 49], 'bgBright')
colors.ansiRegex = ANSI_REGEX
colors.hasColor = colors.hasAnsi = (str) => {
colors.ansiRegex.lastIndex = 0
return typeof str === 'string' && str !== '' && colors.ansiRegex.test(str)
}
colors.alias = (name, color) => {
let fn = typeof color === 'string' ? colors[color] : color
if (typeof fn !== 'function') {
throw new TypeError('Expected alias to be the name of an existing color (string) or a function')
}
if (!fn.stack) {
Reflect.defineProperty(fn, 'name', { value: name })
colors.styles[name] = fn
fn.stack = [name]
}
Reflect.defineProperty(colors, name, {
configurable: true,
enumerable: true,
set(value) {
colors.alias(name, value)
},
get() {
let color = (input) => style(input, color.stack)
Reflect.setPrototypeOf(color, colors)
color.stack = this.stack ? this.stack.concat(fn.stack) : fn.stack
return color
},
})
}
colors.theme = (custom) => {
if (!isObject(custom)) throw new TypeError('Expected theme to be an object')
for (let name of Object.keys(custom)) {
colors.alias(name, custom[name])
}
return colors
}
colors.alias('unstyle', (str) => {
if (typeof str === 'string' && str !== '') {
colors.ansiRegex.lastIndex = 0
return str.replace(colors.ansiRegex, '')
}
return ''
})
colors.alias('noop', (str) => str)
colors.none = colors.clear = colors.noop
colors.stripColor = colors.unstyle
colors.define = define
return colors
}
module.exports = create()
module.exports.create = create

110
_node_modules/@prisma/client/scripts/default-index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,110 @@
/* eslint-disable @typescript-eslint/no-redundant-type-constituents */
import * as runtime from '@prisma/client/runtime/client'
/**
* ## Prisma Client ʲˢ
*
* Type-safe database client for TypeScript & Node.js
* @example
* ```
* const prisma = new Prisma()
* // Fetch zero or more Users
* const users = await prisma.user.findMany()
* ```
*
*
* Read more in our [docs](https://www.prisma.io/docs/concepts/components/prisma-client).
*/
export declare const PrismaClient: any
/**
* ## Prisma Client ʲˢ
*
* Type-safe database client for TypeScript & Node.js
* @example
* ```
* const prisma = new Prisma()
* // Fetch zero or more Users
* const users = await prisma.user.findMany()
* ```
*
*
* Read more in our [docs](https://www.prisma.io/docs/concepts/components/prisma-client).
*/
export declare type PrismaClient = any
export declare class PrismaClientExtends<
ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> {
$extends: { extArgs: ExtArgs } & (<
R extends runtime.Types.Extensions.UserArgs['result'] = {},
M extends runtime.Types.Extensions.UserArgs['model'] = {},
Q extends runtime.Types.Extensions.UserArgs['query'] = {},
C extends runtime.Types.Extensions.UserArgs['client'] = {},
Args extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.InternalArgs<R, M, {}, C>,
>(
args:
| ((client: PrismaClientExtends<ExtArgs>) => { $extends: { extArgs: Args } })
| { name?: string }
| { result?: R & runtime.Types.Extensions.UserArgs['result'] }
| { model?: M & runtime.Types.Extensions.UserArgs['model'] }
| { query?: Q & runtime.Types.Extensions.UserArgs['query'] }
| { client?: C & runtime.Types.Extensions.UserArgs['client'] },
) => PrismaClientExtends<Args & ExtArgs> & Args['client'])
$transaction<R>(
fn: (prisma: Omit<this, runtime.ITXClientDenyList>) => Promise<R>,
options?: { maxWait?: number; timeout?: number; isolationLevel?: string },
): Promise<R>
$transaction<P extends Prisma.PrismaPromise<any>[]>(
arg: [...P],
options?: { isolationLevel?: string },
): Promise<runtime.Types.Utils.UnwrapTuple<P>>
}
export declare const dmmf: any
export declare type dmmf = any
/**
* Get the type of the value, that the Promise holds.
*/
export declare type PromiseType<T extends PromiseLike<any>> = T extends PromiseLike<infer U> ? U : T
/**
* Get the return type of a function which returns a Promise.
*/
export declare type PromiseReturnType<T extends (...args: any) => Promise<any>> = PromiseType<ReturnType<T>>
export namespace Prisma {
export type TransactionClient = any
export function defineExtension<
R extends runtime.Types.Extensions.UserArgs['result'] = {},
M extends runtime.Types.Extensions.UserArgs['model'] = {},
Q extends runtime.Types.Extensions.UserArgs['query'] = {},
C extends runtime.Types.Extensions.UserArgs['client'] = {},
Args extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.InternalArgs<R, M, {}, C>,
>(
args:
| ((client: PrismaClientExtends) => { $extends: { extArgs: Args } })
| { name?: string }
| { result?: R & runtime.Types.Extensions.UserArgs['result'] }
| { model?: M & runtime.Types.Extensions.UserArgs['model'] }
| { query?: Q & runtime.Types.Extensions.UserArgs['query'] }
| { client?: C & runtime.Types.Extensions.UserArgs['client'] },
): (client: any) => PrismaClientExtends<Args>
export type Extension = runtime.Types.Extensions.UserArgs
export import getExtensionContext = runtime.Extensions.getExtensionContext
export import Args = runtime.Types.Public.Args
export import Payload = runtime.Types.Public.Payload
export import Result = runtime.Types.Public.Result
export import Exact = runtime.Types.Public.Exact
export import PrismaPromise = runtime.Types.Public.PrismaPromise
export const prismaVersion: {
client: string
engine: string
}
}

View File

@@ -0,0 +1,65 @@
"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/scripts/default-index.ts
var default_index_exports = {};
__export(default_index_exports, {
Prisma: () => Prisma,
PrismaClient: () => PrismaClient,
default: () => default_index_default
});
module.exports = __toCommonJS(default_index_exports);
// ../../node_modules/.pnpm/@prisma+engines-version@7.4.0-20.ab56fe763f921d033a6c195e7ddeb3e255bdbb57/node_modules/@prisma/engines-version/package.json
var prisma = {
enginesVersion: "ab56fe763f921d033a6c195e7ddeb3e255bdbb57"
};
// package.json
var version = "7.4.0";
// src/runtime/utils/clientVersion.ts
var clientVersion = version;
// src/scripts/default-index.ts
var PrismaClient = class {
constructor() {
throw new Error('@prisma/client did not initialize yet. Please run "prisma generate" and try to import it again.');
}
};
function defineExtension(ext) {
if (typeof ext === "function") {
return ext;
}
return (client) => client.$extends(ext);
}
function getExtensionContext(that) {
return that;
}
var Prisma = {
defineExtension,
getExtensionContext,
prismaVersion: { client: clientVersion, engine: prisma.enginesVersion }
};
var default_index_default = { Prisma };
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
Prisma,
PrismaClient
});