-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"name": "bx",
"version": "0.6.0",
"description": "Command line tool to run JavaScript, TypeScript or HTML files in the browser.",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"bin": {
"bx": "./bin/bx"
},
"scripts": {
"build": "run-s clean compile",
"clean": "rimraf dist coverage",
"compile": "tsc",
"example:lit": "cd examples/lit-hydrate && npm install && tsx example.ts",
"example:script": "./bin/bx examples/consoleLog.js --browserName chrome",
"example:html": "./bin/bx examples/consoleLog.html --browserName chrome",
"example:benchmark": "tsx examples/benchmark.test.ts",
"test": "vitest --run",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/webdriverio/bx.git"
},
"keywords": [
"web"
],
"author": "Christian Bromann <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/webdriverio/bx/issues"
},
"homepage": "https://github.com/webdriverio/bx#readme",
"devDependencies": {
"@types/node": "^22.0.0",
"@types/yargs": "^17.0.32",
"@vitest/coverage-v8": "^2.0.0",
"npm-run-all2": "^7.0.1",
"rimraf": "^6.0.1",
"tinybench": "^3.0.3",
"tsx": "^4.7.1",
"typescript": "^5.4.3",
"vitest": "^2.0.0"
},
"dependencies": {
"vite": "^6.0.2",
"webdriverio": "^9.0.4",
"yargs": "^17.7.2"
}
}