-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 900 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 900 Bytes
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
{
"name": "smwa-injection-tool",
"version": "1.0.0",
"description": "On-the-fly MWA Standard Wallet Injector — Chrome Extension + DevTools Payload + ADB Automation",
"type": "module",
"scripts": {
"bundle": "node build.mjs",
"bookmarklet": "node payload/bookmarklet.js",
"inject": "node scripts/inject.mjs",
"inject:list": "node scripts/inject.mjs --list",
"inject:verbose": "node scripts/inject.mjs --verbose",
"ext:package": "node scripts/package-extension.mjs"
},
"dependencies": {
"@solana-mobile/mobile-wallet-adapter-protocol": "2.2.5",
"@solana-mobile/wallet-standard-mobile": "0.4.4",
"jszip": "^3.10.1",
"ws": "^8.19.0"
},
"devDependencies": {
"esbuild": "^0.27.4"
},
"license": "MIT",
"keywords": [
"solana",
"mobile-wallet-adapter",
"mwa",
"wallet-standard",
"chrome-extension",
"android"
]
}