-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.11 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.11 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
{
"name": "@lazorkit/wallet-mobile-adapter",
"version": "1.4.0",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup --bundleConfigAsCjs -c rollup.config.js",
"prepublishOnly": "node scripts/prepublish-check.js && npm run build",
"prepack": "npm run build",
"prepublish-check": "node scripts/prepublish-check.js"
},
"keywords": [
"lazorkit",
"wallet",
"mobile",
"adapter",
"sdk",
"solana",
"webauthn",
"passkey",
"smart-wallet",
"react-native",
"expo"
],
"author": "LazorKit Team",
"license": "MIT",
"description": "React Native adapter for LazorKit smart wallet with WebAuthn/passkey authentication on Solana",
"repository": {
"type": "git",
"url": "https://github.com/lazorkit/wallet-mobile-adapter.git"
},
"homepage": "https://lazor.sh",
"bugs": {
"url": "https://github.com/lazorkit/wallet-mobile-adapter/issues"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@eslint/js": "9.33.0",
"@rollup/plugin-commonjs": "28.0.6",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.1",
"@types/bn.js": "^5.2.0",
"@types/bs58": "4.0.4",
"@types/react": "19.1.10",
"eslint": "9.33.0",
"eslint-plugin-react": "7.37.5",
"globals": "16.3.0",
"react-native": ">=0.70.0",
"rollup": "4.46.0",
"rollup-plugin-dts": "6.2.1",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-typescript2": "0.36.0",
"typescript": "5.9.2",
"typescript-eslint": "8.39.1"
},
"dependencies": {
"@coral-xyz/anchor": "0.31.1",
"@react-native-async-storage/async-storage": "^2.2.0",
"buffer": "6.0.3",
"expo-crypto": "^15.0.8",
"expo-web-browser": "^14.2.0",
"js-sha256": "0.11.1",
"react-native-get-random-values": "^1.11.0",
"zustand": "^5.0.7"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.70.0"
}
}