-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (37 loc) · 966 Bytes
/
package.json
File metadata and controls
38 lines (37 loc) · 966 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "react-native-alipay-payment",
"version": "1.1.6",
"description": "React Native 支付宝支付模块,支持Android平台,提供完整的支付流程管理、事件回调机制、沙箱/正式环境切换、错误处理和格式化,以及TypeScript类型支持。集成简便,使用灵活,适用于需要接入支付宝App支付功能的React Native应用。",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build"
},
"keywords": [
"react-native",
"alipay",
"payment"
],
"author": "dirinkbottle",
"license": "MIT",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@types/react": "^19.1.8",
"@types/react-native": "^0.70.19",
"typescript": "^4.9.0"
},
"dependencies": {
},
"files": [
"lib/**/*",
"android/**/*",
"ios/**/*",
"index.d.ts",
"index.js",
"README.md"
]
}