twenty/packages/twenty-zapier/package.json
martmull 695991881f
6071 return only updated fields of records in zapier update trigger (#8193)
- move webhook triggers into `entity-events-to-db.listener.ts`
- refactor event management
- add a `@OnDatabaseEvent` decorator to manage database events
- add updatedFields in updated events
- update openApi webhooks docs
- update zapier integration
2024-11-04 17:44:36 +01:00

40 lines
1.1 KiB
JSON

{
"name": "twenty-zapier",
"version": "2.0.0",
"description": "Effortlessly sync Twenty with 3000+ apps. Automate tasks, boost productivity, and supercharge your customer relationships!",
"main": "src/index.ts",
"scripts": {
"nx": "NX_DEFAULT_PROJECT=twenty-zapier node ../../node_modules/nx/bin/nx.js",
"format": "prettier . --write \"!build\"",
"test": "yarn build && jest --testTimeout 10000 --rootDir ./lib/test",
"build": "yarn clean && tsc",
"deploy": "yarn build && zapier push",
"validate": "yarn build && zapier validate",
"versions": "yarn build && zapier versions",
"clean": "rimraf ./lib ./build",
"watch": "yarn clean && tsc --watch",
"_zapier-build": "yarn build"
},
"engines": {
"node": "^18.17.1",
"npm": "please-use-yarn",
"yarn": "^4.0.2"
},
"private": true,
"zapier": {
"convertedByCLIVersion": "15.4.1"
},
"dependencies": {
"dotenv": "^16.4.5",
"zapier-platform-core": "15.5.1"
},
"devDependencies": {
"jest": "29.7.0",
"rimraf": "^3.0.2",
"zapier-platform-cli": "^15.4.1"
},
"installConfig": {
"hoistingLimits": "dependencies"
}
}