UNPKG

shora-ai-payment-sdk

Version:

The first open-source payment SDK designed specifically for AI agents and chatbots - ACP Compatible

127 lines 3.12 kB
{ "name": "shora-ai-payment-sdk", "version": "2.2.0", "description": "The first open-source payment SDK designed specifically for AI agents and chatbots - ACP Compatible", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "commonjs", "module": "dist/index.esm.js", "exports": { ".": { "import": "./dist/esm/index.js", "require": "./dist/index.js" } }, "scripts": { "build": "npm run build:commonjs && npm run build:esm", "build:commonjs": "tsc --module CommonJS --outDir dist", "build:esm": "tsc --module ESNext --outDir dist/esm", "dev": "tsc --watch", "demo": "node demos/agent_demo_next.js", "start": "node demos/agent_demo_next.js", "test": "jest", "test:unit": "jest --testPathPattern=unit --coverage", "test:integration": "jest --testPathPattern=integration --coverage", "test:coverage": "jest --coverage --coverageReporters=text --coverageReporters=lcov", "test:load": "k6 run scripts/k6_scale_test.js", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "format": "prettier --write src/**/*.ts", "format:check": "prettier --check src/**/*.ts", "prepare": "husky install", "pre-commit": "lint-staged", "prepublishOnly": "npm run build", "publish": "npm run build && npm publish", "postinstall": "node scripts/postinstall.js" }, "keywords": [ "ai", "payment", "sdk", "commerce", "agent", "chatbot", "shora", "turkish", "psp", "open-source", "typescript", "javascript", "fintech", "api", "webhook", "mandate", "token", "checkout", "stripe", "paypal", "paytr", "iyzico", "moka", "acp", "agentic-commerce-protocol" ], "author": { "name": "Shora Team", "email": "dev@shora.co", "url": "https://shora.co" }, "license": "MIT", "repository": { "type": "git", "url": "https://github.com/shoraco/shora-ai-payment-sdk.git" }, "bugs": { "url": "https://github.com/shoraco/shora-ai-payment-sdk/issues" }, "homepage": "https://developer.shora.cloud", "engines": { "node": ">=18.0.0" }, "dependencies": { "axios": "^1.7.0", "uuid": "^9.0.0", "ethers": "^6.8.0", "crypto-js": "^4.2.0" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^20.0.0", "@types/uuid": "^9.0.0", "@types/crypto-js": "^4.2.0", "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.0.0", "husky": "^8.0.0", "jest": "^29.0.0", "lint-staged": "^15.0.0", "prettier": "^3.0.0", "ts-jest": "^29.4.5", "typescript": "^5.0.0" }, "files": [ "dist/", "README.md", "LICENSE", "demos/", "CHANGELOG.md", "scripts/" ], "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "funding": { "type": "github", "url": "https://github.com/sponsors/shoraco" }, "os": [ "darwin", "linux", "win32" ], "cpu": [ "x64", "arm64" ] }