| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {
- "name": "@vendure/payments-plugin",
- "version": "3.3.3",
- "license": "GPL-3.0-or-later",
- "main": "package/index.js",
- "types": "package/index.d.ts",
- "files": [
- "package/**/*"
- ],
- "repository": {
- "type": "git",
- "url": "https://github.com/vendure-ecommerce/vendure"
- },
- "private": false,
- "scripts": {
- "watch": "tsc -p ./tsconfig.build.json --watch",
- "build": "rimraf package && tsc -p ./tsconfig.build.json",
- "e2e": "cross-env PACKAGE=payments-plugin vitest --config ../../e2e-common/vitest.config.mts --run",
- "e2e:watch": "cross-env PACKAGE=payments-plugin vitest --config ../../e2e-common/vitest.config.mts",
- "lint": "eslint --fix .",
- "ci": "npm run build",
- "dev-server:mollie": "npm run build && DB=sqlite node -r ts-node/register e2e/mollie-dev-server.ts",
- "dev-server:stripe": "npm run build && DB=sqlite node -r ts-node/register e2e/stripe-dev-server.ts"
- },
- "homepage": "https://www.vendure.io/",
- "funding": "https://github.com/sponsors/michaelbromley",
- "publishConfig": {
- "access": "public"
- },
- "peerDependencies": {
- "@mollie/api-client": "3.x",
- "braintree": "3.x",
- "stripe": "13.x"
- },
- "dependencies": {
- "currency.js": "2.0.4"
- },
- "peerDependenciesMeta": {
- "@mollie/api-client": {
- "optional": true
- },
- "braintree": {
- "optional": true
- },
- "stripe": {
- "optional": true
- }
- },
- "devDependencies": {
- "@mollie/api-client": "^3.7.0",
- "@types/braintree": "^3.3.11",
- "@types/localtunnel": "2.0.4",
- "@vendure/common": "3.3.3",
- "@vendure/core": "3.3.3",
- "@vendure/testing": "3.3.3",
- "braintree": "^3.22.0",
- "localtunnel": "2.0.2",
- "nock": "^13.1.4",
- "rimraf": "^5.0.5",
- "stripe": "^13.3.0",
- "typescript": "5.8.2"
- }
- }
|