| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "name": "@d8d/mini-payment",
- "version": "1.0.0",
- "description": "微信小程序支付模块",
- "type": "module",
- "main": "dist/index.js",
- "types": "dist/index.d.ts",
- "exports": {
- ".": {
- "import": "./dist/index.js",
- "types": "./dist/index.d.ts"
- },
- "./package.json": "./package.json"
- },
- "files": [
- "dist"
- ],
- "scripts": {
- "build": "tsc",
- "dev": "tsc --watch",
- "test": "vitest run",
- "test:watch": "vitest",
- "test:coverage": "vitest run --coverage",
- "lint": "eslint src --ext .ts",
- "typecheck": "tsc --noEmit"
- },
- "dependencies": {
- "@d8d/shared-types": "workspace:*",
- "@d8d/shared-utils": "workspace:*",
- "@d8d/user-module": "workspace:*",
- "@d8d/auth-module": "workspace:*",
- "@hono/zod-openapi": "^1.0.2",
- "typeorm": "^0.3.20",
- "wechatpay-node-v3": "2.1.8",
- "zod": "^4.1.12"
- },
- "devDependencies": {
- "@types/node": "^20.10.5",
- "typescript": "^5.8.3",
- "vitest": "^3.2.4",
- "@vitest/coverage-v8": "^3.2.4",
- "@d8d/shared-test-util": "workspace:*"
- },
- "peerDependencies": {
- "hono": "^4.8.5"
- }
- }
|