-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.65 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 3.65 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "chainwright",
"version": "0.10.9",
"description": "Playwright Web3 wallet testing framework for end-to-end dApp automation with MetaMask, Phantom, Solflare, Petra, Meteor, and Keplr",
"type": "module",
"license": "MIT",
"author": "Tobechukwu Ugwuanyi",
"repository": {
"type": "git",
"url": "git+https://github.com/amaify/chainwright.git"
},
"homepage": "https://github.com/amaify/chainwright#readme",
"bugs": {
"url": "https://github.com/amaify/chainwright/issues"
},
"keywords": [
"chainwright",
"playwright",
"e2e",
"end-to-end testing",
"web3 testing",
"wallet automation",
"wallet testing",
"dapp testing",
"dapp e2e testing",
"web3",
"blockchain",
"metamask",
"phantom",
"solflare",
"petra",
"meteor wallet",
"keplr"
],
"exports": {
"./keplr": {
"types": "./dist/wallets/keplr/index.d.ts",
"import": "./dist/wallets/keplr/index.js"
},
"./metamask": {
"types": "./dist/wallets/metamask/index.d.ts",
"import": "./dist/wallets/metamask/index.js"
},
"./meteor": {
"types": "./dist/wallets/meteor/index.d.ts",
"import": "./dist/wallets/meteor/index.js"
},
"./petra": {
"types": "./dist/wallets/petra/index.d.ts",
"import": "./dist/wallets/petra/index.js"
},
"./phantom": {
"types": "./dist/wallets/phantom/index.d.ts",
"import": "./dist/wallets/phantom/index.js"
},
"./solflare": {
"types": "./dist/wallets/solflare/index.d.ts",
"import": "./dist/wallets/solflare/index.js"
},
"./core": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.js"
}
},
"bin": {
"chainwright": "dist/cli/index.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsup",
"changeset": "changeset",
"version-package": "changeset version",
"release": "pnpm run build && changeset publish",
"dev": "tsx src/cli/index.ts ./tests/wallet-setup",
"setup-wallets": "tsx src/cli/index.ts ./tests/wallet-setup --all -f",
"tests": "vitest --exclude '**/*.spec.ts'",
"lint": "biome check ./src",
"format": "biome format --write ./src",
"tests:e2e:debug": "playwright test --config=tests/playwright.config.ts --debug",
"tests:e2e:ui": "playwright test --config=tests/playwright.config.ts --ui",
"add:wallet": "tsx scripts/add-wallet.ts"
},
"peerDependencies": {
"@playwright/test": "1.61.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@changesets/cli": "^2.31.0",
"@playwright/test": "1.61.1",
"@types/adm-zip": "^0.5.8",
"@types/cli-progress": "^3.11.6",
"@types/node": "^26.0.1",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
},
"dependencies": {
"@inquirer/checkbox": "^5.2.1",
"adm-zip": "^0.5.17",
"cli-progress": "^3.12.0",
"commander": "^15.0.0",
"glob": "^13.0.6",
"prool": "^0.2.4",
"tsx": "^4.22.4",
"zod": "^4.4.3"
},
"overrides": {
"tar": "^7.5.15"
},
"resolutions": {
"tar": "^7.5.15"
},
"pnpm": {
"overrides": {
"tar": "^7.5.15"
}
}
}