-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 964 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
41
42
43
44
45
{
"name": "playwright-webshot",
"version": "1.2.1",
"description": "",
"scripts": {
"build": "tsup src/index.ts --minify --dts --format cjs,esm --out-dir dist",
"test": "playwright test --update-snapshots"
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE",
"test/screenshot.png"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Parassharmaa/playwright-webshot"
},
"author": "Paras Sharma",
"license": "MIT",
"dependencies": {
"@playwright/test": "^1.45.3",
"@types/node": "^22.0.0"
},
"keywords": [
"playwright",
"webshot",
"screenshot"
],
"devDependencies": {
"tsup": "^8.2.3",
"typescript": "^5.5.4"
}
}