3aca603a33
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"name": "@trigger.dev/airtable",
|
|
"version": "3.0.0-beta.37",
|
|
"description": "Trigger.dev integration for airtable",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"devDependencies": {
|
|
"@trigger.dev/tsconfig": "workspace:*",
|
|
"@types/node": "16.x",
|
|
"rimraf": "^3.0.2",
|
|
"tsup": "8.0.1",
|
|
"typescript": "^5.3.0",
|
|
"@trigger.dev/tsup": "workspace:*"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf dist",
|
|
"build": "npm run clean && npm run build:tsup",
|
|
"build:tsup": "tsup",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@trigger.dev/integration-kit": "workspace:^3.0.0-beta.37",
|
|
"@trigger.dev/sdk": "workspace:^3.0.0-beta.37",
|
|
"airtable": "^0.12.1",
|
|
"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"
|
|
}
|