mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-23 22:47:28 +00:00
* base structure * tested all customer operations * all product enpoints tested * all order api tested * typo fix * icon updated * tested all operation , cleanup * added create coupon operation * removing unwanted types * cleanup * updating test connection bug * doc updated * docs updated * removing logs :: pr updates * removing types :: pr updates * cleanup :: pr changes * operation structure updated * restructured whole code for seperating operations * typo bug updated * updating pr updates remove host , test error case updated * typo bug fixed * updating naming conventions * plugins operation.json reusable fields * pr changes :: making all ids common * fixing customer params * updating all additional param types * updating all product params * including some more product params * adding all order params * adding all coupon params * updating common defenitions * capitalise labels * updating all list operation definitions * clearing some typos * global defenition * lock file changes * lock file changes * server lock file changes * typo fix * typo fix Co-authored-by: gsmithun4 <gsmithun4@gmail.com>
25 lines
622 B
JSON
25 lines
622 B
JSON
{
|
|
"name": "@tooljet-plugins/woocommerce",
|
|
"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",
|
|
"@woocommerce/woocommerce-rest-api": "^1.0.1",
|
|
"react": "^17.0.2",
|
|
"woocommerce-api": "^1.5.0"
|
|
}
|
|
}
|