@lowdefy/blocks-aggrid
Version:
AgGrid Blocks for Lowdefy.
80 lines • 2.13 kB
JSON
{
"name": "@lowdefy/blocks-aggrid",
"version": "5.3.0",
"license": "Apache-2.0",
"description": "AgGrid Blocks for Lowdefy.",
"homepage": "https://lowdefy.com",
"keywords": [
"lowdefy",
"lowdefy blocks",
"aggrid",
"table",
"lowdefy plugin"
],
"bugs": {
"url": "https://github.com/lowdefy/lowdefy/issues"
},
"contributors": [
{
"name": "Gerrie van Wyk",
"url": "https://github.com/Gervwyk"
},
{
"name": "Johann Möller",
"url": "https://github.com/JohannMoller"
},
{
"name": "Sam Tolmay",
"url": "https://github.com/SamTolmay"
}
],
"repository": {
"type": "git",
"url": "https://github.com/lowdefy/lowdefy.git"
},
"type": "module",
"exports": {
"./*": "./dist/*",
"./blocks": "./dist/blocks.js",
"./metas": "./dist/metas.js",
"./e2e": "./dist/e2e.js",
"./types": "./dist/types.js"
},
"files": [
"dist/*"
],
"dependencies": {
"@ag-grid-community/client-side-row-model": "32.3.9",
"@ag-grid-community/core": "32.3.9",
"@ag-grid-community/csv-export": "32.3.9",
"@ag-grid-community/react": "32.3.9",
"@ag-grid-community/styles": "32.3.9",
"@lowdefy/block-utils": "5.3.0",
"@lowdefy/helpers": "5.3.0"
},
"peerDependencies": {
"@ant-design/icons": ">=6",
"antd": ">=6",
"dayjs": ">=1.11",
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@lowdefy/block-dev-e2e": "5.3.0",
"@lowdefy/e2e-utils": "5.3.0",
"@playwright/test": "1.50.1",
"@swc/cli": "0.8.0",
"@swc/core": "1.15.18",
"copyfiles": "2.4.1"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "swc src --out-dir dist --config-file ../../../../.swcrc --cli-config-file ../../../../.swc-cli.json && pnpm copyfiles",
"clean": "rm -rf dist",
"copyfiles": "copyfiles -u 1 \"./src/**/*\" dist -e \"./src/**/*.js\" -e \"./src/**/*.yaml\" -e \"./src/**/*.snap\"",
"e2e": "playwright test --config e2e/playwright.config.js",
"e2e:ui": "playwright test --config e2e/playwright.config.js --ui"
}
}