daae6df428
* chore: Update version for release * Update lockfile --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: nicktrn <55853254+nicktrn@users.noreply.github.com>
53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"name": "@trigger.dev/github",
|
|
"version": "2.3.5",
|
|
"description": "The official GitHub integration for Trigger.dev",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"devDependencies": {
|
|
"@octokit/types": "^9.2.3",
|
|
"@octokit/webhooks-types": "^6.10.0",
|
|
"@trigger.dev/tsconfig": "workspace:*",
|
|
"@types/node": "18",
|
|
"rimraf": "^3.0.2",
|
|
"tsup": "8.0.1",
|
|
"@trigger.dev/tsup": "workspace:*",
|
|
"typescript": "^5.3.0"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf dist",
|
|
"build": "npm run clean && npm run build:tsup",
|
|
"build:tsup": "tsup"
|
|
},
|
|
"dependencies": {
|
|
"@octokit/request": "^6.2.5",
|
|
"@octokit/request-error": "^4.0.1",
|
|
"@octokit/webhooks": "^10.4.0",
|
|
"@trigger.dev/integration-kit": "workspace:^2.3.5",
|
|
"@trigger.dev/sdk": "workspace:^2.3.5",
|
|
"octokit": "^2.0.14",
|
|
"zod": "3.22.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.8.0"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.mjs"
|
|
},
|
|
"require": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"module": "./dist/index.mjs"
|
|
}
|