-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.06 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
73
74
75
76
77
78
79
80
{
"name": "@testrigor/playwright-plugin",
"version": "0.2.0",
"description": "testRigor Playwright plugin",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "vitest run",
"test:manual": "vitest run --config vitest.config.manual.ts",
"test:manual:one": "vitest run --config vitest.config.manual.ts -t test_find_by_user_description",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint . && npm run typecheck",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "npm run lint && npm run format:check && npm run build && npm test",
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"playwright",
"testrigor",
"testing",
"automation",
"self-healing",
"locators",
"e2e"
],
"license": "MIT",
"author": "testRigor",
"homepage": "https://github.com/TestRigor/playwright-plugin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/TestRigor/playwright-plugin.git"
},
"bugs": {
"url": "https://github.com/TestRigor/playwright-plugin/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"11": "^0.0.1",
"@grpc/grpc-js": "^1.12.6",
"@grpc/proto-loader": "^0.7.13",
"protobufjs": "^7.6.4"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"playwright": ">=1.40.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vitest": "^2.1.8"
},
"peerDependencies": {
"playwright": ">=1.40.0"
},
"directories": {
"test": "tests"
}
}