capacitor-plugin-cashfree-pg
Version:
A modern Capacitor plugin for Cashfree Payment Gateway with official API contract support
92 lines (91 loc) • 2.97 kB
JSON
{
"name": "capacitor-plugin-cashfree-pg",
"version": "0.0.3",
"description": "A modern Capacitor plugin for Cashfree Payment Gateway with official API contract support",
"main": "dist/plugin.cjs.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"unpkg": "dist/plugin.js",
"engines": {
"node": ">=16.0.0"
},
"files": [
"android/src/main/",
"android/build.gradle",
"dist/",
"ios/Sources/",
"CapacitorPluginCashfreePg.podspec"
],
"author": "Kishan Kumar Maurya",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cashfree/capacitor-plugin-cashfree-pg.git"
},
"bugs": {
"url": "https://github.com/cashfree/capacitor-plugin-cashfree-pg/issues"
},
"keywords": [
"capacitor",
"plugin",
"ionic",
"cashfree",
"payment",
"gateway",
"payments",
"mobile",
"typescript",
"api-contract"
],
"scripts": {
"verify": "npm run verify:ios && npm run verify:android && npm run verify:web",
"verify:ios": "sh -c 'command -v pod >/dev/null 2>&1 || { echo \"CocoaPods not installed; skipping iOS verification.\"; exit 0; }; pod lib lint CapacitorPluginCashfreePg.podspec --allow-warnings --skip-tests || echo \"pod lib lint failed (ensure version tag exists and network/specs reachable).\"'",
"verify:android": "cd android && ./gradlew clean build test && cd ..",
"verify:web": "npm run build",
"lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint",
"fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --fix --format",
"eslint": "eslint . --ext ts",
"prettier": "prettier \"**/*.{css,html,ts,js,java}\" --plugin=prettier-plugin-java",
"swiftlint": "node-swiftlint",
"docgen": "docgen --api CFPaymentGatewayPlugin --output-readme README.md --output-json dist/docs.json",
"build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.mjs",
"clean": "rimraf ./dist",
"watch": "tsc --watch",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@capacitor/android": "^7.0.0",
"@capacitor/core": "^7.0.0",
"@capacitor/docgen": "^0.3.0",
"@capacitor/ios": "^7.0.0",
"@ionic/eslint-config": "^0.4.0",
"@ionic/prettier-config": "^4.0.0",
"@ionic/swiftlint-config": "^2.0.0",
"eslint": "^8.57.0",
"prettier": "^3.4.2",
"prettier-plugin-java": "^2.6.6",
"rimraf": "^6.0.1",
"rollup": "^4.30.1",
"swiftlint": "^2.0.0",
"typescript": "~4.1.5"
},
"peerDependencies": {
"@capacitor/core": ">=7.0.0"
},
"prettier": "@ionic/prettier-config",
"swiftlint": "@ionic/swiftlint-config",
"eslintConfig": {
"extends": "@ionic/eslint-config/recommended"
},
"capacitor": {
"ios": {
"src": "ios"
},
"android": {
"src": "android"
}
},
"dependencies": {
"cashfree-pg-api-contract": "^2.0.8"
}
}