52c9d485f8
* fix trailing slash in api url * add maybe platform down error * shorten config path * extend protobuf compiler install instructions * build command and image model * new image triggers task indexing * index support for prod builds * shorten example provider secret * multi-stage task prod build * lock prod tasks to node 18 image * extract shared build and dev command libs * pull out more shared deps * add coordinator and providers * fix core-apps build * add dev builds for new apps * fix cwd * enable corepack * some build fixes * enable buildkit for old docker versions * coordinator image fixes * update provider containerfile * build dev images in parallel * upgrade pgadmin * fix prod facade build * prod runs * fix merge * don't knock out platform on invalid attempt id * fix prod facade * rename to build.ts * fix prod builds * set to executing after fetching payload * make prod worker listen on random port if in use * remove experimental warnings in dev * prod resume * prevent execution after completion * exit prod worker after completion * always restart otel collector * docker checkpoints and prod runtime messaging * don't retry indexing without chance of success * make platform checkpoint aware * deploy with existing hash sets latest worker * log restore requests * only try to checkpoint long waits * tidying up * lockfile * fix build * prod worker merge fixes * fix prod complete and cancel * fix lua nil checks * socket namespace abstraction * cleanup * make all build args optional * add build script * don't require env vars for dev * fix schema * prod merge * small fix * bind correct logger * fix v3 ref catalog entry * resume prod batch * pass socket to error and disconnect handlers * fix non-batch resume * fix batch resume * send connection env vars when not in dev * create worker via socket * move api client back into v3 cli * fix lockfile * fix resume with failures * marqs replace message * typecheck prior to build * don't define api url in prod builds * support prod retries after resume * skip typecheck option
97 lines
2.2 KiB
JSON
97 lines
2.2 KiB
JSON
{
|
|
"name": "@trigger.dev/cli",
|
|
"version": "2.3.18",
|
|
"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": "^18",
|
|
"@types/node-fetch": "^2.6.2",
|
|
"@types/ws": "^8.5.3",
|
|
"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:*",
|
|
"@trigger.dev/yalt": "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",
|
|
"esbuild": "^0.19.11",
|
|
"execa": "^7.0.0",
|
|
"gradient-string": "^2.0.2",
|
|
"inquirer": "^9.1.4",
|
|
"liquidjs": "^10.9.2",
|
|
"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",
|
|
"ws": "^8.11.0",
|
|
"zod": "3.22.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
} |