mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-25 07:27:28 +00:00
* initialized the plugin * Added token field and notion svg icon * added notion js client * Added token authentication * Added database query and retrieve operations * Working on other operations of database and page * Added archive page & get single property operations * Resolved an issue & changed placeholders * Added operations of block * Added start cursor to page & database * Added operations of user endpoint * changed icon & cover from object to fields * Updated documentation
24 lines
567 B
JSON
24 lines
567 B
JSON
{
|
|
"name": "@tooljet-plugins/notion",
|
|
"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": {
|
|
"@notionhq/client": "^1.0.4",
|
|
"@tooljet-plugins/common": "file:../common",
|
|
"react": "^17.0.2"
|
|
}
|
|
}
|