forked from Jobflow-io/effect-playwright
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.52 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
{
"name": "effect-playwright",
"type": "module",
"version": "0.2.3",
"description": "An Effect-based Playwright library.",
"author": "Jobflow GmbH",
"license": "ISC",
"homepage": "https://github.com/Jobflow-io/effect-playwright",
"repository": {
"type": "git",
"url": "git+https://github.com/Jobflow-io/effect-playwright.git"
},
"bugs": {
"url": "https://github.com/Jobflow-io/effect-playwright/issues"
},
"exports": {
".": "./dist/index.mjs",
"./experimental": "./dist/experimental/index.mjs",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"prepublishOnly": "pnpm build",
"test": "vitest run",
"type-check": "tsc --noEmit",
"generate-docs": "typedoc",
"format-fix": "biome format --fix"
},
"keywords": [
"effect",
"effect-ts",
"playwright",
"browser",
"automation"
],
"packageManager": "pnpm@10.27.0",
"dependencies": {
"playwright-core": "^1.58.2"
},
"peerDependencies": {
"@effect/platform": "^0.93.3",
"effect": "^3.19.6"
},
"devDependencies": {
"@biomejs/biome": "2.3.14",
"@effect/language-service": "0.73.0",
"@effect/platform": "^0.94.4",
"@effect/platform-node": "^0.104.1",
"@effect/vitest": "^0.27.0",
"@types/node": "^25.2.2",
"effect": "^3.19.16",
"playwright": "^1.58.2",
"tsdown": "0.20.3",
"tsx": "^4.21.0",
"typedoc": "^0.28.16",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"types": "./dist/index.d.mts"
}