-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathpackage.json
63 lines (63 loc) · 2.17 KB
/
package.json
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
{
"name": "@solana-mobile/wallet-adapter-mobile",
"description": "An adapter for mobile wallet apps that conform to the Solana Mobile Wallet Adapter protocol",
"version": "2.1.5",
"author": "Steven Luscher <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/solana-mobile/mobile-wallet-adapter.git"
},
"license": "Apache-2.0",
"type": "module",
"sideEffects": false,
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"react-native": "lib/cjs/index.native.js",
"types": "lib/types/index.d.ts",
"browser": {
"./lib/cjs/index.js": "./lib/cjs/index.browser.js",
"./lib/esm/index.js": "./lib/esm/index.browser.js"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js",
"types": "./lib/types/index.d.ts"
}
},
"files": [
"lib",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "shx rm -rf lib/*",
"build": "yarn clean && rollup --config ../../rollup.config.ts --configPlugin rollup-plugin-ts",
"build:watch": "yarn clean && rollup --config ../../rollup.config.ts --configPlugin rollup-plugin-ts --watch",
"postbuild": "cross-env echo {\\\"type\\\":\\\"commonjs\\\"} | npx json > lib/cjs/package.json && echo {\\\"type\\\":\\\"module\\\"} | npx json > lib/esm/package.json",
"prepublishOnly": "agadoo"
},
"peerDependencies": {
"@solana/web3.js": "^1.58.0"
},
"dependencies": {
"@solana-mobile/mobile-wallet-adapter-protocol-web3js": "^2.1.5",
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/wallet-standard-features": "^1.2.0",
"js-base64": "^3.7.5",
"qrcode": "^1.5.4"
},
"optionalDependencies": {
"@react-native-async-storage/async-storage": "^1.17.7"
},
"devDependencies": {
"@solana/web3.js": "^1.91.7",
"@types/qrcode": "^1.5.5",
"agadoo": "^3.0.0",
"cross-env": "^7.0.3",
"shx": "^0.3.4"
}
}