UNPKG

paystream

Version:

PayStream V2 - 现代化的 TypeScript 统一支付回调处理库,采用面向对象架构

78 lines 2.08 kB
{ "name": "paystream", "version": "2.2.1", "description": "PayStream V2 - 现代化的 TypeScript 统一支付回调处理库,采用面向对象架构", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "files": [ "dist", "README.md", "CHANGELOG.md" ], "keywords": [ "payment", "wechat-pay", "alipay", "callback", "typescript", "nodejs", "provider", "oop", "nextjs", "webhook" ], "author": "PayStream Contributors", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/your-username/paystream.git" }, "bugs": { "url": "https://github.com/your-username/paystream/issues" }, "homepage": "https://github.com/your-username/paystream#readme", "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "dependencies": { "paystream": "link:C:/Users/Administrator/AppData/Local/pnpm/global/5/node_modules/paystream" }, "devDependencies": { "@types/node": "^20.10.0", "@typescript-eslint/eslint-plugin": "^7.18.0", "@typescript-eslint/parser": "^7.18.0", "@vitest/coverage-v8": "^2.1.8", "eslint": "^8.55.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.0.1", "prettier": "^3.1.0", "tsup": "^8.0.1", "typescript": "^5.3.2", "vitest": "^2.1.8" }, "engines": { "node": ">=16.0.0" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "test": "vitest", "test:coverage": "vitest --coverage", "lint": "eslint src --ext .ts,.tsx", "lint:fix": "eslint src --ext .ts,.tsx --fix", "format": "prettier --write \"src/**/*.{ts,tsx,json}\"", "type-check": "tsc --noEmit", "release": "pnpm build && npm publish", "release:beta": "pnpm build && npm publish --tag beta", "release:alpha": "pnpm build && npm publish --tag alpha" } }