mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-05 06:18:34 +00:00
* feat: add Amazon SES plugin implementation * fix: rename kind for amazon ses API * fix: use better svg icon for amazon ses Co-authored-by: aloks98 <aloksahoo@acceldata.io>
29 lines
745 B
JSON
29 lines
745 B
JSON
{
|
|
"name": "@tooljet-plugins/oracledb",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"directories": {
|
|
"lib": "lib",
|
|
"test": "__tests__"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"test": "echo \"Error: run tests from root\" && exit 1",
|
|
"build": "tsc -b",
|
|
"clean": "rimraf ./dist && rimraf tsconfig.tsbuildinfo"
|
|
},
|
|
"homepage": "https://github.com/tooljet/tooljet#readme",
|
|
"dependencies": {
|
|
"@tooljet-plugins/common": "file:../common",
|
|
"knex": "^0.95.14",
|
|
"oracledb": "https://github.com/oracle/node-oracledb/releases/download/v5.3.0/oracledb-src-5.3.0.tgz",
|
|
"react": "^17.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/oracledb": "^5.2.2"
|
|
}
|
|
}
|