-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.42 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
81
82
83
84
85
86
87
{
"name": "@stencil/playwright",
"version": "0.4.3",
"description": "Testing adapter to use Playwright with Stencil",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "npm run build.empty && npm run build.types && npm run build.bundle",
"build.empty": "rimraf ./dist ./build/build.js",
"build.types": "tsc --emitDeclarationOnly --outDir ./dist",
"build.bundle": "tsx ./build/build.ts",
"format": "npm run format.base -- --write",
"format.base": "prettier --cache \"src/**/*.ts\"",
"format.dry-run": "npm run format.base -- --list-different",
"lint": "eslint \"src/**/*.ts\"",
"spellcheck": "cspell --no-progress \"src/**/*.ts\" \"build/**/*.ts\" \"*.md\"",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "https://github.com/stenciljs/playwright"
},
"keywords": [
"stencil",
"playwright",
"testing"
],
"author": "Stencil Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/stenciljs/playwright/issues"
},
"homepage": "https://github.com/stenciljs/playwright#readme",
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"volta": {
"node": "22.22.1",
"npm": "10.9.7"
},
"peerDependencies": {
"@playwright/test": ">=1.50.0",
"@stencil/core": "^4.0.0 || >=5.0.0-alpha.0 <5.0.0-beta.0"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@ionic/prettier-config": "^4.0.0",
"@playwright/test": "^1.50.0",
"@stencil/core": ">=5.0.0-alpha.0 <5.0.0-beta.0",
"@types/eslint": "^9.6.1",
"@types/node": "^24.9.2",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"cspell": "^9.2.2",
"esbuild": "^0.25.11",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^61.1.11",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.3.0",
"globals": "^14.0.0",
"vitest": "^3.2.4",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2"
},
"prettier": "@ionic/prettier-config",
"dependencies": {
"deepmerge": "^4.3.1",
"find-up": "^8.0.0"
}
}