50e3d9e43a
* Added EndpointIndex status. Default is PENDING, existing rows are SUCCESS * Made it easier to create a migration SQL file * Created a job-catalog file for misconfigured Jobs that should error when running the CLI * EndpointIndex data and state are now optional * The Environments page now shows the status of the last refresh * Improved the UI about endpoints * Added EndpointIndex error column * WIP making the endpoint indexing more robust * Indexing errors are now surfaced * Improved the error show it shows the job id * Use “performEndpointIndexing” when you create your first endpoint from the UI * Use “performEndpointIndexing” for the recurring endpoint checker * Staging is now auto-indexed every 10 mins too * Use “performEndpointIndexing” for the webhook * Moved the throttling to a util * Removed instructional comments * Created a reusable retry system with exponential backoff * Use p-retry for retrying with backoff * The CLI gets indexing results and displays errors * Improved the indexing error messages and display in the console * Use a pre so the Indexing error is correctly split over multiple lines * Use a db transaction for webhook that triggers endpoint indexing * Tidied up imports * Support older versions of the server * Improved the comment on the misconfigured job * Changeset: When indexing user's jobs errors are now stored and displayed
93 lines
2.1 KiB
JSON
93 lines
2.1 KiB
JSON
{
|
|
"name": "@trigger.dev/cli",
|
|
"version": "2.1.9",
|
|
"description": "The Trigger.dev CLI",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/triggerdotdev/trigger.dev.git",
|
|
"directory": "packages/cli"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"keywords": [
|
|
"typescript",
|
|
"trigger.dev",
|
|
"workflows",
|
|
"orchestration",
|
|
"events",
|
|
"webhooks",
|
|
"integrations",
|
|
"apis",
|
|
"jobs",
|
|
"background-jobs",
|
|
"nextjs"
|
|
],
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"type": "module",
|
|
"exports": "./dist/index.js",
|
|
"bin": {
|
|
"trigger-cli": "./dist/index.js"
|
|
},
|
|
"devDependencies": {
|
|
"@trigger.dev/tsconfig": "workspace:*",
|
|
"@types/gradient-string": "^1.1.2",
|
|
"@types/inquirer": "^9.0.3",
|
|
"@types/mock-fs": "^4.13.1",
|
|
"@types/node": "16",
|
|
"@types/node-fetch": "^2.6.2",
|
|
"rimraf": "^3.0.2",
|
|
"tsup": "^6.5.0",
|
|
"type-fest": "^3.6.0",
|
|
"typescript": "^4.9.5",
|
|
"vitest": "^0.34.4"
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsc",
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"clean": "rimraf dist",
|
|
"start": "node dist/index.js",
|
|
"test": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"@trigger.dev/core": "workspace:*",
|
|
"@types/degit": "^2.8.3",
|
|
"boxen": "^7.1.1",
|
|
"chalk": "^5.2.0",
|
|
"chokidar": "^3.5.3",
|
|
"commander": "^9.4.1",
|
|
"console-table-printer": "^2.11.2",
|
|
"degit": "^2.8.4",
|
|
"dotenv": "^16.3.1",
|
|
"execa": "^7.0.0",
|
|
"gradient-string": "^2.0.2",
|
|
"inquirer": "^9.1.4",
|
|
"localtunnel": "^2.0.2",
|
|
"mock-fs": "^5.2.0",
|
|
"nanoid": "^4.0.2",
|
|
"ngrok": "5.0.0-beta.2",
|
|
"node-fetch": "^3.3.0",
|
|
"npm-check-updates": "^16.12.2",
|
|
"openai": "^4.5.0",
|
|
"ora": "^6.1.2",
|
|
"p-retry": "^6.1.0",
|
|
"path-to-regexp": "^6.2.1",
|
|
"posthog-node": "^3.1.1",
|
|
"proxy-agent": "^6.3.0",
|
|
"simple-git": "^3.19.0",
|
|
"terminal-link": "^3.0.0",
|
|
"tsconfck": "^2.1.2",
|
|
"url": "^0.11.1",
|
|
"zod": "3.22.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|