forked from solana-mobile/mobile-wallet-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.87 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
{
"name": "@solana-mobile/mobile-wallet-adapter-protocol-web3js",
"description": "A convenience wrapper that enables you to call Solana Mobile Stack protocol methods using objects from @solana/web3.js",
"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": [
"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": "^2.1.4",
"bs58": "^5.0.0",
"js-base64": "^3.7.5"
},
"devDependencies": {
"@solana/web3.js": "^1.91.7",
"agadoo": "^3.0.0",
"cross-env": "^7.0.3",
"shx": "^0.3.4"
}
}