-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.62 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.62 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
{
"name": "effect-playwright",
"type": "module",
"version": "0.4.0",
"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",
"coverage": "tsx scripts/coverage.ts",
"generate-docs": "typedoc",
"format": "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.4.9",
"@effect/cli": "^0.75.0",
"@effect/language-service": "0.84.2",
"@effect/platform": "^0.96.0",
"@effect/platform-node": "^0.106.0",
"@effect/vitest": "^0.29.0",
"@types/node": "^25.5.0",
"effect": "^3.21.0",
"playwright": "^1.58.2",
"ts-morph": "^27.0.2",
"tsdown": "0.21.7",
"tsx": "^4.21.0",
"typedoc": "^0.28.18",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"types": "./dist/index.d.mts"
}