-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.75 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
88
89
90
91
92
93
{
"name": "@wonderland/walletless",
"version": "1.2.0",
"private": false,
"description": "Virtual EIP-1193 provider for E2E testing with Wagmi connector",
"keywords": [
"ethereum",
"e2e",
"testing",
"wagmi",
"viem",
"provider",
"eip-1193"
],
"homepage": "https://github.com/defi-wonderland/walletless#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/defi-wonderland/walletless.git"
},
"license": "MIT",
"author": "Wonderland",
"type": "module",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"directories": {
"src": "src"
},
"files": [
"dist/*",
"package.json",
"!**/*.tsbuildinfo"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"check-types": "tsc --noEmit -p ./tsconfig.json",
"clean": "rm -rf dist",
"format": "prettier --check \"{src,test}/**/*.{js,ts,json}\"",
"format:fix": "prettier --write \"{src,test}/**/*.{js,ts,json}\"",
"lint": "eslint \"{src,test}/**/*.{js,ts,json}\"",
"lint:fix": "pnpm lint --fix",
"prepare": "husky",
"test": "vitest run --config vitest.config.ts --passWithNoTests",
"test:cov": "vitest run --config vitest.config.ts --coverage"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.js,*.ts,*.json": "eslint --fix",
"package.json": "sort-package-json"
},
"dependencies": {
"viem": "2.43.5",
"wagmi": "3.2.0"
},
"devDependencies": {
"@commitlint/config-conventional": "19.4.1",
"@ianvs/prettier-plugin-sort-imports": "4.3.1",
"@types/node": "20.3.1",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitest/coverage-v8": "2.1.9",
"commitlint": "19.4.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.5",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"sort-package-json": "2.10.1",
"typescript": "5.5.4",
"vitest": "2.1.9"
},
"peerDependencies": {
"viem": ">=2.0.0",
"wagmi": ">=2.0.0"
},
"packageManager": "pnpm@9.7.1",
"engines": {
"node": ">=20"
},
"pnpm": {
"overrides": {
"esbuild@<=0.24.2": ">=0.25.0",
"@metamask/sdk-communication-layer@>=0.16.0 <=0.33.0": ">=0.33.1",
"@metamask/sdk@>=0.16.0 <=0.33.0": ">=0.33.1"
}
}
}