-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.68 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.68 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@wallet-test-framework/framework",
"version": "0.10.0-dev",
"description": "a suite of tests for Ethereum wallets",
"license": "MIT",
"type": "module",
"exports": {
".": {
"node": "./dist/server/index.js",
"browser": "./dist/client/index.js"
},
"./worker_chain.js": {
"browser": "./dist/client/worker_chain.js"
}
},
"bin": {
"wtfd": "./dist/server/index.js"
},
"files": [
"dist"
],
"scripts": {
"fmt": "prettier --write .",
"build:client": "node ./client/Build.js && tsc -d --emitDeclarationOnly -p client",
"build:server": "node ./server/Build.js && tsc -d --emitDeclarationOnly -p server",
"build": "npm run build:client && npm run build:server",
"test": "prettier --check . && npm run build && eslint .",
"start": "node ./dist/server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wallet-test-framework/framework.git"
},
"contributors": [
{
"name": "Nikki Gaudreau",
"url": "https://twitter.com/gaudren_",
"email": "nikki@binarycake.ca"
},
{
"name": "Sam Wilson",
"url": "https://twitter.com/_SamWilsn_",
"email": "sam@binarycake.ca"
}
],
"bugs": {
"url": "https://github.com/wallet-test-framework/framework/issues"
},
"homepage": "https://wtf.allwallet.dev/",
"engines": {
"node": ">=18.14.2 <20.8"
},
"devDependencies": {
"@jgoz/esbuild-plugin-typecheck": "^3.1.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@tsconfig/recommended": "^1.0.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.6",
"@types/serve-static": "^1.15.5",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@wallet-test-framework/glue": "^0.8.0",
"@walletconnect/ethereum-provider": "^2.14.0",
"assert": "^2.1.0",
"esbuild": "0.20.1",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"ganache": "7.9.0",
"mocha": "^10.3.0",
"prettier": "3.2.5",
"process": "^0.11.10",
"rpc-websockets": "^7.9.0",
"solc": "0.8.24",
"typescript": "^5.4.2",
"viem": "^2.7.20"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.3",
"lru-cache": "^10.2.0",
"raw-body": "^2.5.2",
"serve-static": "^1.15.0",
"ws": "^8.16.0"
}
}