-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.56 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
{
"name": "@solflare-wallet/metamask-wallet-standard",
"version": "1.0.11",
"author": "Solflare Developers <[email protected]>",
"repository": "",
"license": "Apache-2.0",
"sideEffects": false,
"exports": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
},
"module": "./lib/esm/index.js",
"main": "./lib/cjs/index.js",
"scripts": {
"start:esm": "tsc --watch",
"start:cjs": "tsc --project tsconfig.cjs.json --watch",
"start": "npm-run-all -p start:esm start:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build": "npm run build:esm && npm run build:cjs",
"deploy": "npm run build && npm publish --access public"
},
"files": [
"src/",
"lib/"
],
"dependencies": {
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/wallet-standard-chains": "^1.1.0",
"@solana/wallet-standard-features": "^1.0.1",
"@solflare-wallet/metamask-sdk": "^1.0.3",
"@wallet-standard/base": "^1.0.1",
"@wallet-standard/features": "^1.0.3",
"@wallet-standard/wallet": "^1.0.1",
"bs58": "^5.0.0"
},
"devDependencies": {
"@types/bs58": "^4.0.1",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-prettier": "^5.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"shx": "^0.3.4",
"typescript": "^5.1.6"
},
"peerDependencies": {
"@solana/web3.js": "*"
}
}