paystream
Version:
PayStream V2 - 现代化的 TypeScript 统一支付回调处理库,采用面向对象架构
85 lines • 2.15 kB
JSON
{
"name": "paystream",
"version": "2.2.2",
"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"
],
"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",
"prepublishOnly": "pnpm build",
"release": "pnpm build && npm publish",
"release:beta": "pnpm build && npm publish --tag beta",
"release:alpha": "pnpm build && npm publish --tag alpha"
},
"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/"
},
"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"
},
"packageManager": "pnpm@10.10.0",
"pnpm": {
"overrides": {
"esbuild": ">=0.25.0"
},
"onlyBuiltDependencies": [
"esbuild"
]
}
}