-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.84 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
{
"name": "@wallet-test-framework/glue-metamask-ios",
"version": "0.1.0",
"description": "Glue between Wallet Test Framework and MetaMask Wallet (iOS)",
"license": "MIT",
"type": "module",
"bin": "./dist/cli.js",
"exports": {
".": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"fmt": "prettier --write .",
"build": "node ./Build.js && tsc -d --emitDeclarationOnly",
"test": "prettier --check . && eslint . && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wallet-test-framework/glue-metamask-ios.git"
},
"contributors": [
{
"name": "Nikki Gaudreau",
"url": "https://twitter.com/gaudren_",
"email": "[email protected]"
},
{
"name": "Sam Wilson",
"url": "https://twitter.com/_SamWilsn_",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/wallet-test-framework/glue-metamask-ios/issues"
},
"homepage": "https://wtf.allwallet.dev/",
"devDependencies": {
"@jgoz/esbuild-plugin-typecheck": "^4.0.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@tsconfig/recommended": "^1.0.7",
"@types/node": "^20.6.1",
"@typescript-eslint/eslint-plugin": "8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"esbuild": "0.23.1",
"eslint": "9.10.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "3.3.3",
"typescript": "^5.6.2"
},
"dependencies": {
"@wallet-test-framework/glue": "^0.8.0",
"@wallet-test-framework/glue-ws": "../glue-ws",
"meow": "^13.2.0",
"rpc-websockets": "7.10.0",
"webdriverio": "^9.0.9"
}
}