-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.02 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.02 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
{
"name": "@vscode-wdio/worker",
"version": "0.4.2",
"private": true,
"type": "module",
"exports": {
".": {
"import": "./dist/index.js"
},
"./windows": {
"import": "./dist/config.js"
},
"./parser/ast": {
"import": "./dist/parsers/js.js"
},
"./parser/cucumber": {
"import": "./dist/parsers/cucumber.js"
}
},
"scripts": {
"build": "tsc -p .",
"build:production": "pnpm clean && pnpm run build",
"typecheck": "tsc --noEmit --project tsconfig.json",
"clean": "shx rm -rf out dist coverage"
},
"dependencies": {
"@babel/parser": "^7.27.5",
"@cucumber/gherkin": "^39.0.0",
"@cucumber/messages": "^32.2.0",
"@vscode-wdio/constants": "workspace:*",
"@vscode-wdio/utils": "workspace:*",
"birpc": "^4.0.0",
"dotenv": "^17.0.0",
"import-meta-resolve": "^4.1.0",
"recast": "^0.23.11",
"ws": "^8.18.1"
},
"devDependencies": {
"@types/ws": "^8.18.1",
"@vscode-wdio/types": "workspace:*",
"@wdio/cli": "^9.16.2"
}
}