-
Notifications
You must be signed in to change notification settings - Fork 458
/
Copy pathpackage.json
40 lines (40 loc) · 904 Bytes
/
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
{
"name": "@fuels/playwright-utils",
"version": "0.50.2",
"license": "Apache-2.0",
"main": "src/index.ts",
"type": "module",
"publishConfig": {
"access": "public",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"default": "./dist/index.js"
}
}
},
"files": ["dist"],
"scripts": {
"build": "pnpm ts:check && tsup",
"ts:check": "pnpm tsc --noEmit"
},
"dependencies": {
"adm-zip": "^0.5.10"
},
"devDependencies": {
"fuels": "pr-3735",
"@fuels/ts-config": "^0.26.0",
"@fuels/tsup-config": "^0.26.0",
"@playwright/test": "1.46.1",
"@types/adm-zip": "^0.5.3",
"tsup": "^7.2.0"
},
"peerDependencies": {
"fuels": ">=0.98.0",
"@playwright/test": ">=1.46.1"
}
}