mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-08-21 10:33:37 +00:00
fix indents in megalodon files
This commit is contained in:
parent
b8dd7f4a95
commit
67d859f0d8
3 changed files with 171 additions and 132 deletions
|
@ -1,69 +1,69 @@
|
||||||
{
|
{
|
||||||
"name": "megalodon",
|
"name": "megalodon",
|
||||||
"version": "7.0.1",
|
"version": "7.0.1",
|
||||||
"description": "Mastodon API client for node.js and browser",
|
"description": "Mastodon API client for node.js and browser",
|
||||||
"main": "./lib/src/index.js",
|
"main": "./lib/src/index.js",
|
||||||
"typings": "./lib/src/index.d.ts",
|
"typings": "./lib/src/index.d.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc -p ./",
|
"build": "tsc -p ./",
|
||||||
"test": "cross-env NODE_ENV=test jest -u --maxWorkers=3"
|
"test": "cross-env NODE_ENV=test jest -u --maxWorkers=3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^22.0.0"
|
"node": "^22.0.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/h3poteto/megalodon.git"
|
"url": "git+https://github.com/h3poteto/megalodon.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"mastodon",
|
"mastodon",
|
||||||
"client",
|
"client",
|
||||||
"api",
|
"api",
|
||||||
"streaming",
|
"streaming",
|
||||||
"rest",
|
"rest",
|
||||||
"proxy"
|
"proxy"
|
||||||
],
|
],
|
||||||
"author": "h3poteto",
|
"author": "h3poteto",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/h3poteto/megalodon/issues"
|
"url": "https://github.com/h3poteto/megalodon/issues"
|
||||||
},
|
},
|
||||||
"jest": {
|
"jest": {
|
||||||
"moduleFileExtensions": [
|
"moduleFileExtensions": [
|
||||||
"ts",
|
"ts",
|
||||||
"js"
|
"js"
|
||||||
],
|
],
|
||||||
"moduleNameMapper": {
|
"moduleNameMapper": {
|
||||||
"^@/(.+)": "<rootDir>/src/$1",
|
"^@/(.+)": "<rootDir>/src/$1",
|
||||||
"^~/(.+)": "<rootDir>/$1"
|
"^~/(.+)": "<rootDir>/$1"
|
||||||
},
|
},
|
||||||
"testMatch": [
|
"testMatch": [
|
||||||
"**/test/**/*.spec.ts"
|
"**/test/**/*.spec.ts"
|
||||||
],
|
],
|
||||||
"preset": "ts-jest/presets/default",
|
"preset": "ts-jest/presets/default",
|
||||||
"transform": {
|
"transform": {
|
||||||
"^.+\\.(ts|tsx)$": [
|
"^.+\\.(ts|tsx)$": [
|
||||||
"ts-jest",
|
"ts-jest",
|
||||||
{
|
{
|
||||||
"tsconfig": "tsconfig.json"
|
"tsconfig": "tsconfig.json"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"testEnvironment": "node"
|
"testEnvironment": "node"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/h3poteto/megalodon#readme",
|
"homepage": "https://github.com/h3poteto/megalodon#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"axios": "1.9.0",
|
"axios": "1.9.0",
|
||||||
"dayjs": "1.11.13",
|
"dayjs": "1.11.13",
|
||||||
"form-data": "4.0.2",
|
"form-data": "4.0.2",
|
||||||
"oauth": "0.10.2",
|
"oauth": "0.10.2",
|
||||||
"typescript": "5.8.3"
|
"typescript": "5.8.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/jest": "29.5.14",
|
"@types/jest": "29.5.14",
|
||||||
"@types/oauth": "0.9.6",
|
"@types/oauth": "0.9.6",
|
||||||
"jest": "29.7.0",
|
"jest": "29.7.0",
|
||||||
"jest-worker": "29.7.0",
|
"jest-worker": "29.7.0",
|
||||||
"ts-jest": "29.3.4"
|
"ts-jest": "29.3.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,17 +12,17 @@ import MastodonEntity from './mastodon/entity';
|
||||||
import MisskeyEntity from './misskey/entity';
|
import MisskeyEntity from './misskey/entity';
|
||||||
|
|
||||||
export {
|
export {
|
||||||
type Response,
|
type Response,
|
||||||
OAuth,
|
OAuth,
|
||||||
RequestCanceledError,
|
RequestCanceledError,
|
||||||
isCancel,
|
isCancel,
|
||||||
detector,
|
detector,
|
||||||
type MegalodonInterface,
|
type MegalodonInterface,
|
||||||
NotificationType,
|
NotificationType,
|
||||||
FilterContext,
|
FilterContext,
|
||||||
Misskey,
|
Misskey,
|
||||||
type Entity,
|
type Entity,
|
||||||
Converter,
|
Converter,
|
||||||
type MastodonEntity,
|
type MastodonEntity,
|
||||||
type MisskeyEntity,
|
type MisskeyEntity,
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,66 +1,105 @@
|
||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
/* Basic Options */
|
/* Basic Options */
|
||||||
"target": "ES2022", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */
|
"target": "ES2022",
|
||||||
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
|
/* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */
|
||||||
"lib": ["ES2022", "dom"], /* Specify library files to be included in the compilation. */
|
"module": "commonjs",
|
||||||
// "allowJs": true, /* Allow javascript files to be compiled. */
|
/* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
|
||||||
// "checkJs": true, /* Report errors in .js files. */
|
"lib": [
|
||||||
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
|
"ES2022",
|
||||||
"declaration": true, /* Generates corresponding '.d.ts' file. */
|
"dom"
|
||||||
"declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
|
],
|
||||||
// "sourceMap": true, /* Generates corresponding '.map' file. */
|
/* Specify library files to be included in the compilation. */
|
||||||
// "outFile": "./", /* Concatenate and emit output to single file. */
|
// "allowJs": true, /* Allow javascript files to be compiled. */
|
||||||
"outDir": "./lib", /* Redirect output structure to the directory. */
|
// "checkJs": true, /* Report errors in .js files. */
|
||||||
"rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
|
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
|
||||||
// "composite": true, /* Enable project compilation */
|
"declaration": true,
|
||||||
"removeComments": true, /* Do not emit comments to output. */
|
/* Generates corresponding '.d.ts' file. */
|
||||||
// "noEmit": true, /* Do not emit outputs. */
|
"declarationMap": true,
|
||||||
// "importHelpers": true, /* Import emit helpers from 'tslib'. */
|
/* Generates a sourcemap for each corresponding '.d.ts' file. */
|
||||||
"downlevelIteration": false, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
|
// "sourceMap": true, /* Generates corresponding '.map' file. */
|
||||||
"isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
|
// "outFile": "./", /* Concatenate and emit output to single file. */
|
||||||
|
"outDir": "./lib",
|
||||||
|
/* Redirect output structure to the directory. */
|
||||||
|
"rootDir": "./",
|
||||||
|
/* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
|
||||||
|
// "composite": true, /* Enable project compilation */
|
||||||
|
"removeComments": true,
|
||||||
|
/* Do not emit comments to output. */
|
||||||
|
// "noEmit": true, /* Do not emit outputs. */
|
||||||
|
// "importHelpers": true, /* Import emit helpers from 'tslib'. */
|
||||||
|
"downlevelIteration": false,
|
||||||
|
/* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
|
||||||
|
"isolatedModules": true,
|
||||||
|
/* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
|
||||||
"incremental": true,
|
"incremental": true,
|
||||||
|
/* Strict Type-Checking Options */
|
||||||
|
"strict": true,
|
||||||
|
/* Enable all strict type-checking options. */
|
||||||
|
"noImplicitAny": true,
|
||||||
|
/* Raise error on expressions and declarations with an implied 'any' type. */
|
||||||
|
"strictNullChecks": true,
|
||||||
|
/* Enable strict null checks. */
|
||||||
|
"strictFunctionTypes": true,
|
||||||
|
/* Enable strict checking of function types. */
|
||||||
|
"strictPropertyInitialization": true,
|
||||||
|
/* Enable strict checking of property initialization in classes. */
|
||||||
|
"noImplicitThis": true,
|
||||||
|
/* Raise error on 'this' expressions with an implied 'any' type. */
|
||||||
|
"alwaysStrict": true,
|
||||||
|
/* Parse in strict mode and emit "use strict" for each source file. */
|
||||||
|
|
||||||
/* Strict Type-Checking Options */
|
/* Additional Checks */
|
||||||
"strict": true, /* Enable all strict type-checking options. */
|
"noUnusedLocals": true,
|
||||||
"noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
|
/* Report errors on unused locals. */
|
||||||
"strictNullChecks": true, /* Enable strict null checks. */
|
"noUnusedParameters": true,
|
||||||
"strictFunctionTypes": true, /* Enable strict checking of function types. */
|
/* Report errors on unused parameters. */
|
||||||
"strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */
|
"noImplicitReturns": true,
|
||||||
"noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
|
/* Report error when not all code paths in function return a value. */
|
||||||
"alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
|
"noFallthroughCasesInSwitch": true,
|
||||||
|
/* Report errors for fallthrough cases in switch statement. */
|
||||||
/* Additional Checks */
|
|
||||||
"noUnusedLocals": true, /* Report errors on unused locals. */
|
|
||||||
"noUnusedParameters": true, /* Report errors on unused parameters. */
|
|
||||||
"noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
|
|
||||||
"noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
|
|
||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
|
/* Module Resolution Options */
|
||||||
|
"moduleResolution": "node",
|
||||||
|
/* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
|
||||||
|
"baseUrl": "./",
|
||||||
|
/* Base directory to resolve non-absolute module names. */
|
||||||
|
"paths": {
|
||||||
|
"@*": [
|
||||||
|
"src*"
|
||||||
|
],
|
||||||
|
"~*": [
|
||||||
|
"./*"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
/* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
|
||||||
|
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
|
||||||
|
// "typeRoots": [], /* List of folders to include type definitions from. */
|
||||||
|
// "types": [], /* Type declaration files to be included in compilation. */
|
||||||
|
// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
|
||||||
|
"esModuleInterop": true,
|
||||||
|
/* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
|
||||||
|
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
|
||||||
|
|
||||||
/* Module Resolution Options */
|
/* Source Map Options */
|
||||||
"moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
|
// "sourceRoot": "./", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
|
||||||
"baseUrl": "./", /* Base directory to resolve non-absolute module names. */
|
// "mapRoot": "./", /* Specify the location where debugger should locate map files instead of generated locations. */
|
||||||
"paths": {
|
"inlineSourceMap": false,
|
||||||
"@*": ["src*"],
|
/* Emit a single file with source maps instead of having a separate file. */
|
||||||
"~*": ["./*"]
|
"inlineSources": false,
|
||||||
}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
|
/* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
|
||||||
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
|
|
||||||
// "typeRoots": [], /* List of folders to include type definitions from. */
|
|
||||||
// "types": [], /* Type declaration files to be included in compilation. */
|
|
||||||
// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
|
|
||||||
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
|
|
||||||
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
|
|
||||||
|
|
||||||
/* Source Map Options */
|
/* Experimental Options */
|
||||||
// "sourceRoot": "./", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
|
"experimentalDecorators": true
|
||||||
// "mapRoot": "./", /* Specify the location where debugger should locate map files instead of generated locations. */
|
/* Enables experimental support for ES7 decorators. */
|
||||||
"inlineSourceMap": false, /* Emit a single file with source maps instead of having a separate file. */
|
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
|
||||||
"inlineSources": false, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
|
},
|
||||||
|
"include": [
|
||||||
/* Experimental Options */
|
"./src",
|
||||||
"experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
|
"./test"
|
||||||
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
|
],
|
||||||
},
|
"exclude": [
|
||||||
"include": ["./src", "./test"],
|
"node_modules",
|
||||||
"exclude": ["node_modules", "example"]
|
"example"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue