-
-
Notifications
You must be signed in to change notification settings - Fork 195
/
package.json
57 lines (57 loc) · 1.52 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
{
"name": "@synthetixio/synpress",
"version": "4.0.3",
"type": "module",
"exports": {
".": {
"default": "./dist/index.js",
"types": "./types/index.d.ts"
},
"./cypress": {
"types": "./types/cypress/index.d.ts",
"default": "./dist/cypress/index.js"
},
"./cypress/support": {
"types": "./types/cypress/support/index.d.ts",
"default": "./dist/cypress/support/index.js"
},
"./playwright": {
"types": "./types/playwright/index.d.ts",
"default": "./dist/playwright/index.js"
}
},
"bin": "./dist/cli.js",
"files": [
"README.md",
"dist",
"src",
"types"
],
"scripts": {
"build": "pnpm run clean && pnpm run build:dist && pnpm run build:types",
"build:dist": "tsup",
"build:types": "tsc --emitDeclarationOnly",
"clean": "rimraf dist types",
"lint": "biome check . --apply",
"lint:check": "biome check . --verbose",
"lint:unsafe": "biome check . --apply-unsafe",
"prepublishOnly": "cp ../README.md . && pnpm run build",
"types:check": "tsc --noEmit"
},
"dependencies": {
"@synthetixio/ethereum-wallet-mock": "workspace:*",
"@synthetixio/synpress-cache": "0.0.4",
"@synthetixio/synpress-core": "0.0.4",
"@synthetixio/synpress-metamask": "workspace:*"
},
"devDependencies": {
"@synthetixio/synpress-tsconfig": "0.0.4",
"@types/node": "20.11.17",
"rimraf": "5.0.5",
"tsup": "8.0.2",
"typescript": "5.3.3"
},
"peerDependencies": {
"@playwright/test": "1.48.2"
}
}