-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
75 lines (75 loc) · 1.89 KB
/
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
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
73
74
75
{
"name": "@replayio/playwright",
"version": "3.1.8",
"description": "Configuration utilities for using the Replay browsers with playwright",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./reporter": "./dist/reporter.js",
"./package.json": "./package.json"
},
"files": [
"dist",
"src",
"*.js",
"*.d.ts"
],
"scripts": {
"prepare": "yarn run build",
"build": "pkg-build",
"test": "echo \"Error: no test specified\"",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@playwright/test": "^1.40.1",
"@replay-cli/pkg-build": "workspace:^",
"@replay-cli/shared": "workspace:^",
"@replay-cli/tsconfig": "workspace:^",
"@replayio/test-utils": "workspace:^",
"@types/debug": "^4.1.8",
"@types/node": "^20.11.27",
"@types/stack-utils": "^2.0.3",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.10",
"turbo": "^2.0.5",
"typescript": "^5.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/replayio/replay-cli.git"
},
"author": "",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/replayio/replay-cli/issues"
},
"homepage": "https://github.com/replayio/replay-cli/blob/main/packages/playwright/README.md",
"dependencies": {
"chalk": "^4.1.2",
"debug": "^4.3.4",
"fs-extra": "^11.2.0",
"is-uuid": "^1.0.2",
"jsonata": "^1.8.6",
"launchdarkly-node-client-sdk": "^3.2.1",
"mixpanel": "^0.18.0",
"node-fetch": "^2.6.7",
"p-map": "^4.0.0",
"sha-1": "^1.0.0",
"stack-utils": "^2.0.6",
"superstruct": "^1.0.4",
"undici": "^5.28.4",
"uuid": "^8.3.2",
"winston": "^3.13.0",
"winston-loki": "^6.1.2",
"ws": "^8.13.0"
},
"peerDependencies": {
"@playwright/test": "^1.34.0"
},
"@replay-cli/pkg-build": {
"entrypoints": [
"./src/index.ts",
"./src/reporter.ts"
]
}
}