@eggjs/scripts
Advanced tools
+15
-15
| import { BaseCommand } from "../baseCommand.js"; | ||
| import * as _oclif_core_interfaces4 from "@oclif/core/interfaces"; | ||
| import * as _oclif_core_interfaces0 from "@oclif/core/interfaces"; | ||
@@ -14,18 +14,18 @@ //#region src/commands/start.d.ts | ||
| static args: { | ||
| baseDir: _oclif_core_interfaces4.Arg<string | undefined, Record<string, unknown>>; | ||
| baseDir: _oclif_core_interfaces0.Arg<string | undefined, Record<string, unknown>>; | ||
| }; | ||
| static flags: { | ||
| title: _oclif_core_interfaces4.OptionFlag<string | undefined, _oclif_core_interfaces4.CustomOptions>; | ||
| framework: _oclif_core_interfaces4.OptionFlag<string | undefined, _oclif_core_interfaces4.CustomOptions>; | ||
| port: _oclif_core_interfaces4.OptionFlag<number | undefined, _oclif_core_interfaces4.CustomOptions>; | ||
| workers: _oclif_core_interfaces4.OptionFlag<number | undefined, _oclif_core_interfaces4.CustomOptions>; | ||
| env: _oclif_core_interfaces4.OptionFlag<string, _oclif_core_interfaces4.CustomOptions>; | ||
| daemon: _oclif_core_interfaces4.BooleanFlag<boolean>; | ||
| stdout: _oclif_core_interfaces4.OptionFlag<string | undefined, _oclif_core_interfaces4.CustomOptions>; | ||
| stderr: _oclif_core_interfaces4.OptionFlag<string | undefined, _oclif_core_interfaces4.CustomOptions>; | ||
| timeout: _oclif_core_interfaces4.OptionFlag<number, _oclif_core_interfaces4.CustomOptions>; | ||
| 'ignore-stderr': _oclif_core_interfaces4.BooleanFlag<boolean>; | ||
| node: _oclif_core_interfaces4.OptionFlag<string, _oclif_core_interfaces4.CustomOptions>; | ||
| require: _oclif_core_interfaces4.OptionFlag<string[] | undefined, _oclif_core_interfaces4.CustomOptions>; | ||
| sourcemap: _oclif_core_interfaces4.BooleanFlag<boolean>; | ||
| title: _oclif_core_interfaces0.OptionFlag<string | undefined, _oclif_core_interfaces0.CustomOptions>; | ||
| framework: _oclif_core_interfaces0.OptionFlag<string | undefined, _oclif_core_interfaces0.CustomOptions>; | ||
| port: _oclif_core_interfaces0.OptionFlag<number | undefined, _oclif_core_interfaces0.CustomOptions>; | ||
| workers: _oclif_core_interfaces0.OptionFlag<number | undefined, _oclif_core_interfaces0.CustomOptions>; | ||
| env: _oclif_core_interfaces0.OptionFlag<string, _oclif_core_interfaces0.CustomOptions>; | ||
| daemon: _oclif_core_interfaces0.BooleanFlag<boolean>; | ||
| stdout: _oclif_core_interfaces0.OptionFlag<string | undefined, _oclif_core_interfaces0.CustomOptions>; | ||
| stderr: _oclif_core_interfaces0.OptionFlag<string | undefined, _oclif_core_interfaces0.CustomOptions>; | ||
| timeout: _oclif_core_interfaces0.OptionFlag<number, _oclif_core_interfaces0.CustomOptions>; | ||
| 'ignore-stderr': _oclif_core_interfaces0.BooleanFlag<boolean>; | ||
| node: _oclif_core_interfaces0.OptionFlag<string, _oclif_core_interfaces0.CustomOptions>; | ||
| require: _oclif_core_interfaces0.OptionFlag<string[] | undefined, _oclif_core_interfaces0.CustomOptions>; | ||
| sourcemap: _oclif_core_interfaces0.BooleanFlag<boolean>; | ||
| }; | ||
@@ -32,0 +32,0 @@ isReady: boolean; |
| import { BaseCommand } from "../baseCommand.js"; | ||
| import { NodeProcess } from "../helper.js"; | ||
| import * as _oclif_core_interfaces0 from "@oclif/core/interfaces"; | ||
| import * as _oclif_core_interfaces23 from "@oclif/core/interfaces"; | ||
@@ -10,7 +10,7 @@ //#region src/commands/stop.d.ts | ||
| static args: { | ||
| baseDir: _oclif_core_interfaces0.Arg<string | undefined, Record<string, unknown>>; | ||
| baseDir: _oclif_core_interfaces23.Arg<string | undefined, Record<string, unknown>>; | ||
| }; | ||
| static flags: { | ||
| title: _oclif_core_interfaces0.OptionFlag<string | undefined, _oclif_core_interfaces0.CustomOptions>; | ||
| timeout: _oclif_core_interfaces0.OptionFlag<number, _oclif_core_interfaces0.CustomOptions>; | ||
| title: _oclif_core_interfaces23.OptionFlag<string | undefined, _oclif_core_interfaces23.CustomOptions>; | ||
| timeout: _oclif_core_interfaces23.OptionFlag<number, _oclif_core_interfaces23.CustomOptions>; | ||
| }; | ||
@@ -17,0 +17,0 @@ run(): Promise<void>; |
+41
-46
| { | ||
| "name": "@eggjs/scripts", | ||
| "version": "5.0.0-beta.35", | ||
| "version": "5.0.0-beta.36", | ||
| "description": "deploy tool for egg project", | ||
| "homepage": "https://github.com/eggjs/egg/tree/next/tools/scripts", | ||
| "bugs": { | ||
| "url": "https://github.com/eggjs/egg/issues" | ||
| }, | ||
| "license": "MIT", | ||
| "author": "TZ <atian25@qq.com>", | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "git+https://github.com/eggjs/egg.git", | ||
| "directory": "tools/scripts" | ||
| }, | ||
| "bin": { | ||
| "egg-scripts": "./bin/run.js", | ||
| "eggctl": "./bin/run.js" | ||
| }, | ||
| "files": [ | ||
| "bin", | ||
| "dist", | ||
| "scripts" | ||
| ], | ||
| "type": "module", | ||
| "main": "./dist/index.js", | ||
| "module": "./dist/index.js", | ||
| "types": "./dist/index.d.ts", | ||
| "exports": { | ||
@@ -18,34 +41,2 @@ ".": "./dist/index.js", | ||
| }, | ||
| "bin": { | ||
| "egg-scripts": "./bin/run.js", | ||
| "eggctl": "./bin/run.js" | ||
| }, | ||
| "files": [ | ||
| "bin", | ||
| "dist", | ||
| "scripts" | ||
| ], | ||
| "oclif": { | ||
| "bin": "eggctl", | ||
| "commands": "./dist/commands", | ||
| "dirname": "eggctl", | ||
| "topicSeparator": " ", | ||
| "additionalHelpFlags": [ | ||
| "-h" | ||
| ] | ||
| }, | ||
| "license": "MIT", | ||
| "homepage": "https://github.com/eggjs/egg/tree/next/tools/scripts", | ||
| "bugs": { | ||
| "url": "https://github.com/eggjs/egg/issues" | ||
| }, | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "git+https://github.com/eggjs/egg.git", | ||
| "directory": "tools/scripts" | ||
| }, | ||
| "author": "TZ <atian25@qq.com>", | ||
| "engines": { | ||
| "node": ">= 22.18.0" | ||
| }, | ||
| "dependencies": { | ||
@@ -57,25 +48,29 @@ "@oclif/core": "^4.2.0", | ||
| "utility": "^2.5.0", | ||
| "@eggjs/utils": "5.0.0-beta.35" | ||
| "@eggjs/utils": "5.0.0-beta.36" | ||
| }, | ||
| "devDependencies": { | ||
| "@types/node": "^24.10.1", | ||
| "@types/node": "^24.10.2", | ||
| "coffee": "5", | ||
| "detect-port": "^2.1.0", | ||
| "mm": "^4.0.2", | ||
| "oxlint": "^1.31.0", | ||
| "tsdown": "^0.17.0", | ||
| "tsdown": "^0.18.2", | ||
| "typescript": "^5.9.3", | ||
| "urllib": "^4.8.2", | ||
| "vitest": "^4.0.15", | ||
| "egg": "4.1.0-beta.35", | ||
| "@eggjs/tsconfig": "3.1.0-beta.35" | ||
| "egg": "4.1.0-beta.36" | ||
| }, | ||
| "main": "./dist/index.js", | ||
| "module": "./dist/index.js", | ||
| "types": "./dist/index.d.ts", | ||
| "oclif": { | ||
| "additionalHelpFlags": [ | ||
| "-h" | ||
| ], | ||
| "bin": "eggctl", | ||
| "commands": "./dist/commands", | ||
| "dirname": "eggctl", | ||
| "topicSeparator": " " | ||
| }, | ||
| "engines": { | ||
| "node": ">= 22.18.0" | ||
| }, | ||
| "scripts": { | ||
| "build": "tsdown", | ||
| "typecheck": "tsc --noEmit", | ||
| "lint": "oxlint --type-aware", | ||
| "pretest": "pnpm run build", | ||
| "typecheck": "tsgo --noEmit", | ||
| "test": "vitest run --bail 1 --no-file-parallelism", | ||
@@ -82,0 +77,0 @@ "cov": "pnpm test --coverage", |
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 4 instances in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 4 instances in 1 package
9
-18.18%27102
-0.55%+ Added
- Removed
Updated