-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.47 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.47 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
{
"name": "@coinbase/onchaintestkit",
"version": "1.2.0",
"description": "End-to-end testing toolkit for blockchain applications, powered by Playwright",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"prepare-coinbase": "./src/cli/prepare-coinbase.mjs",
"prepare-metamask": "./src/cli/prepare-metamask.mjs",
"prepare-phantom": "./src/cli/prepare-phantom.mjs"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rimraf dist",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome check .",
"lint:fix": "biome check --apply .",
"lint:unsafe": "biome check --apply-unsafe .",
"test": "playwright test",
"prepare-metamask": "node src/cli/prepare-metamask.mjs",
"prepare-coinbase": "node src/cli/prepare-coinbase.mjs",
"prepare-phantom": "node src/cli/prepare-phantom.mjs",
"copilot:setup": "./scripts/quick-setup.sh",
"copilot:validate": "./scripts/validate-setup.sh",
"copilot:full-setup": "npm run copilot:setup && npm run copilot:validate",
"prepublishOnly": "npm run clean && npm run build",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"keywords": [
"blockchain",
"testing",
"e2e",
"playwright",
"web3",
"wallet",
"metamask",
"coinbase-wallet"
],
"author": "Coinbase",
"license": "MIT",
"peerDependencies": {
"@playwright/test": "^1.34.0"
},
"dependencies": {
"@coinbase/onchainkit": "^0.36.4",
"ethers": "^5.7.2",
"extract-zip": "^2.0.1",
"fs-extra": "^11.1.1",
"node-fetch": "^3.3.2",
"viem": "^2.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@changesets/cli": "^2.29.5",
"@coinbase/onchaintestkit": "^1.2.0",
"@playwright/test": "^1.34.0",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.16.0",
"@vercel/analytics": "^1.6.1",
"rimraf": "^6.0.1",
"typescript": "^5.0.4",
"vitepress": "^1.6.4"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
},
"workspaces": [
".",
"example/frontend"
],
"exports": {
".": "./dist/src/index.js",
"./*": "./dist/src/*",
"./src/*": "./src/*",
"./package.json": "./package.json"
},
"packageManager": "yarn@4.9.2",
"resolutions": {
"ws": "^8.17.1",
"@babel/runtime": "^7.26.10",
"brace-expansion": "^2.0.2"
}
}