-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.25 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.25 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
{
"name": "@keep-starknet-strange/privy-starknet-provider",
"version": "1.0.0",
"description": "Starknet wallet provider for React Native apps using Privy authentication and AVNU paymaster",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"example": "cd example && npm start",
"example:ios": "cd example && npx expo run:ios --device",
"example:android": "cd example && npx expo run:android --device"
},
"keywords": [
"starknet",
"privy",
"wallet",
"react-native",
"expo",
"avnu",
"paymaster",
"gasless",
"blockchain",
"web3"
],
"author": "Keep Starknet Strange",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/keep-starknet-strange/privy.git"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.70.0",
"expo": ">=49.0.0",
"@privy-io/expo": ">=0.63.0",
"expo-crypto": ">=13.0.0"
},
"dependencies": {
"starknet": "^9.2.1",
"@noble/curves": "^1.9.1",
"@noble/hashes": "^1.8.0"
},
"devDependencies": {
"@types/react": "~19.1.0",
"typescript": "~5.9.2"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
]
}