@shopware-ag/acceptance-test-suite 12.4.3 → 12.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,61 +1,68 @@
1
1
  {
2
- "name": "@shopware-ag/acceptance-test-suite",
3
- "version": "12.4.3",
4
- "description": "Shopware Acceptance Test Suite",
5
- "author": "shopware AG",
6
- "license": "MIT",
7
- "repository": {
8
- "type": "git",
9
- "url": "git+https://github.com/shopware/acceptance-test-suite.git"
10
- },
11
- "keywords": [
12
- "shopware",
13
- "testing",
14
- "playwright",
15
- "integration",
16
- "fixtures",
17
- "test-data"
18
- ],
19
- "type": "module",
20
- "exports": {
21
- ".": {
22
- "types": "./dist/index.d.mts",
23
- "import": "./dist/index.mjs",
24
- "default": "./dist/index.mjs"
2
+ "name": "@shopware-ag/acceptance-test-suite",
3
+ "version": "12.5.0",
4
+ "description": "Shopware Acceptance Test Suite",
5
+ "keywords": [
6
+ "fixtures",
7
+ "integration",
8
+ "playwright",
9
+ "shopware",
10
+ "test-data",
11
+ "testing"
12
+ ],
13
+ "license": "MIT",
14
+ "author": "shopware AG",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/shopware/acceptance-test-suite.git"
18
+ },
19
+ "files": [
20
+ "dist"
21
+ ],
22
+ "type": "module",
23
+ "module": "./dist/index.mjs",
24
+ "types": "./dist/index.d.ts",
25
+ "exports": {
26
+ ".": {
27
+ "types": "./dist/index.d.mts",
28
+ "import": "./dist/index.mjs",
29
+ "default": "./dist/index.mjs"
30
+ }
31
+ },
32
+ "scripts": {
33
+ "lint": "oxlint --type-aware",
34
+ "lint:fix": "oxlint --type-aware --fix",
35
+ "format": "oxfmt --write .",
36
+ "typecheck": "tsgo --noEmit",
37
+ "build": "unbuild",
38
+ "prepare": "lefthook install",
39
+ "prepublishOnly": "npm run build"
40
+ },
41
+ "dependencies": {
42
+ "@axe-core/playwright": "4.11.1",
43
+ "@playwright/test": "1.58.1",
44
+ "@shopware/api-client": "1.4.0",
45
+ "axe-html-reporter": "2.2.11",
46
+ "compare-versions": "6.1.1",
47
+ "i18next": "25.8.3",
48
+ "image-js": "1.3.0",
49
+ "uuid": "13.0.0"
50
+ },
51
+ "devDependencies": {
52
+ "@types/node": "25.2.0",
53
+ "@types/uuid": "11.0.0",
54
+ "@typescript/native-preview": "7.0.0-dev.20260205.1",
55
+ "eslint-plugin-playwright": "2.5.1",
56
+ "lefthook": "2.1.0",
57
+ "oxfmt": "0.28.0",
58
+ "oxlint": "1.43.0",
59
+ "oxlint-tsgolint": "0.11.4",
60
+ "unbuild": "3.6.1"
61
+ },
62
+ "engines": {
63
+ "node": "24.x || 25.x"
64
+ },
65
+ "packageManager": {
66
+ "name": "npm"
25
67
  }
26
- },
27
- "module": "./dist/index.mjs",
28
- "types": "./dist/index.d.ts",
29
- "files": [
30
- "dist"
31
- ],
32
- "scripts": {
33
- "lint": "eslint . --ext .ts",
34
- "lint:fix": "npm run lint -- --fix",
35
- "build": "npx unbuild",
36
- "prepublishOnly": "npm run build"
37
- },
38
- "dependencies": {
39
- "@axe-core/playwright": "^4.10.2",
40
- "@eslint/js": "^9.35.0",
41
- "@playwright/test": "^1.55.0",
42
- "@shopware/api-client": "^1.3.0",
43
- "axe-html-reporter": "^2.2.11",
44
- "compare-versions": "^6.1.1",
45
- "i18next": "^25.5.2",
46
- "image-js": "^1.0.0",
47
- "typescript-eslint": "^8.43.0",
48
- "uuid": "^13.0.0"
49
- },
50
- "devDependencies": {
51
- "@types/node": "^20.19.10",
52
- "@types/uuid": "10.0.0",
53
- "@typescript-eslint/eslint-plugin": "^8.43.0",
54
- "@typescript-eslint/parser": "^8.43.0",
55
- "eslint": "^9.35.0",
56
- "eslint-plugin-playwright": "^2.2.2",
57
- "ts-node": "10.9.2",
58
- "typescript": "5.9.2",
59
- "unbuild": "^3.6.1"
60
- }
61
68
  }