forked from solana-mobile/mobile-wallet-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.06 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
{
"name": "@solana-mobile/mobile-wallet-adapter-protocol",
"description": "An implementation of the Solana Mobile Mobile Wallet Adapter protocol. Use this to open a session with a mobile wallet app, and to issue API calls to it.",
"version": "2.1.4",
"author": "Steven Luscher <steven.luscher@solanamobile.com>",
"repository": "https://github.com/solana-mobile/mobile-wallet-adapter",
"license": "Apache-2.0",
"type": "module",
"sideEffects": false,
"main": "lib/cjs/index.js",
"react-native": "lib/cjs/index.native.js",
"module": "lib/esm/index.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"
}
},
"files": [
"android",
"!android/build",
"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"
},
"dependencies": {
"@solana/wallet-standard": "^1.1.2",
"@solana/wallet-standard-util": "^1.1.1",
"@wallet-standard/core": "^1.0.3",
"js-base64": "^3.7.5"
},
"devDependencies": {
"@solana/web3.js": "^1.91.7",
"@types/react-native": "^0.69.3",
"agadoo": "^3.0.0",
"cross-env": "^7.0.3",
"shx": "^0.3.4"
},
"peerDependencies": {
"@solana/web3.js": "^1.58.0",
"react-native": ">0.69"
}
}