-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.74 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
{
"name": "effect-playwright",
"type": "module",
"version": "0.5.0",
"description": "An Effect-based Playwright library.",
"author": "Jobflow GmbH",
"license": "MIT",
"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"
},
"bin": {
"effect-playwright": "./bin/cli.mjs"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "tsdown",
"prepublishOnly": "pnpm build",
"test": "vitest run",
"type-check": "tsc --noEmit",
"coverage": "tsx scripts/coverage.ts",
"generate-docs": "typedoc",
"format": "biome format --fix",
"check": "biome check --fix"
},
"keywords": [
"effect",
"effect-ts",
"playwright",
"browser",
"automation"
],
"packageManager": "pnpm@11.5.1",
"dependencies": {
"playwright-core": "^1.60.0"
},
"peerDependencies": {
"@effect/platform": "^0.93.3",
"effect": "^3.19.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@effect/cli": "^0.75.2",
"@effect/language-service": "0.86.2",
"@effect/platform": "^0.96.1",
"@effect/platform-node": "^0.107.0",
"@effect/vitest": "^0.29.0",
"@types/node": "^25.9.1",
"effect": "^3.21.2",
"playwright": "^1.60.0",
"ts-morph": "^28.0.0",
"tsdown": "0.22.1",
"tsx": "^4.22.4",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.8"
},
"types": "./dist/index.d.mts"
}