-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.99 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 1.99 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "ows-react-native",
"version": "0.1.0",
"description": "The first React Native library for the Open Wallet Standard (OWS) — policy-gated autonomous agent payments on Solana using USDC, with Stripe MPP / x402 HTTP 402 support.",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index.ts",
"source": "src/index.ts",
"exports": {
".": {
"import": "./lib/module/index.js",
"require": "./lib/commonjs/index.js",
"types": "./lib/typescript/index.d.ts"
}
},
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"build": "bob build",
"backend": "cd backend && npm run dev",
"example": "cd example && npx expo start",
"prepare": "bob build",
"prepublishOnly": "npm run build"
},
"keywords": [
"react-native",
"solana",
"usdc",
"open-wallet-standard",
"ows",
"wallet-standard",
"payments",
"agent",
"ai-agent",
"autonomous-payments",
"mpp",
"x402",
"stripe",
"defi",
"web3",
"crypto"
],
"repository": {
"type": "git",
"url": "https://github.com/rkmonarch/ows-react-native"
},
"homepage": "https://github.com/rkmonarch/ows-react-native#readme",
"bugs": {
"url": "https://github.com/rkmonarch/ows-react-native/issues"
},
"author": "rkmonarch",
"license": "MIT",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {
"axios": "^1.6.0"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-native": "^0.73.0",
"react": "18.2.0",
"react-native": "0.73.0",
"react-native-builder-bob": "^0.23.0",
"typescript": "^5.3.0"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}