cypress 15.12.0 → 15.13.1

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,6 +1,6 @@
1
1
  {
2
2
  "name": "cypress",
3
- "version": "15.12.0",
3
+ "version": "15.13.1",
4
4
  "main": "dist/index.js",
5
5
  "scripts": {
6
6
  "postinstall": "node dist/index.js --exec install",
@@ -142,8 +142,8 @@
142
142
  },
143
143
  "buildInfo": {
144
144
  "commitBranch": "develop",
145
- "commitSha": "dbb806af7cb2e657ad659675bc9b38a65a3d4a18",
146
- "commitDate": "2026-03-10T14:34:58.000Z",
145
+ "commitSha": "ab6082263b66c16e70a475d476fb622fe33ef9da",
146
+ "commitDate": "2026-04-07T14:46:58.000Z",
147
147
  "stable": true
148
148
  },
149
149
  "description": "Cypress is a next generation front end testing tool built for the modern web",
@@ -11,12 +11,15 @@
11
11
  "cy:open:debug": "node --inspect-brk ../../scripts/start.js --component-testing --run-project ${PWD}",
12
12
  "cy:run": "node ../../scripts/cypress.js run --component",
13
13
  "cy:run:debug": "node --inspect-brk ../../scripts/start.js --component-testing --run-project ${PWD}",
14
- "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
14
+ "lint": "eslint",
15
15
  "test": "yarn cy:run",
16
16
  "watch": "yarn build --watch --watch.exclude ./dist/**/*"
17
17
  },
18
18
  "devDependencies": {
19
+ "@packages/eslint-config": "0.0.0-development",
19
20
  "@cypress/mount-utils": "0.0.0-development",
21
+ "eslint": "^9.31.0",
22
+ "jiti": "^2.4.2",
20
23
  "@vitejs/plugin-react": "4.6.0",
21
24
  "axios": "1.8.2",
22
25
  "cypress": "0.0.0-development",
@@ -102,5 +105,8 @@
102
105
  "cy",
103
106
  "expect"
104
107
  ]
108
+ },
109
+ "lint-staged": {
110
+ "**/*.{js,jsx,ts,tsx}": "eslint --fix"
105
111
  }
106
112
  }
@@ -11,12 +11,15 @@
11
11
  "cy:open:debug": "node --inspect-brk ../../scripts/start.js --component-testing --run-project ${PWD}",
12
12
  "cy:run": "node ../../scripts/cypress.js run --component",
13
13
  "cy:run:debug": "node --inspect-brk ../../scripts/start.js --component-testing --run-project ${PWD}",
14
- "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
14
+ "lint": "eslint",
15
15
  "test": "yarn cy:run",
16
16
  "watch": "yarn build --watch --watch.exclude ./dist/**/*"
17
17
  },
18
18
  "devDependencies": {
19
+ "@packages/eslint-config": "0.0.0-development",
19
20
  "@cypress/mount-utils": "0.0.0-development",
21
+ "eslint": "^9.31.0",
22
+ "jiti": "^2.4.2",
20
23
  "@vitejs/plugin-react": "4.6.0",
21
24
  "axios": "1.8.2",
22
25
  "cypress": "0.0.0-development",
@@ -102,5 +105,8 @@
102
105
  "cy",
103
106
  "expect"
104
107
  ]
108
+ },
109
+ "lint-staged": {
110
+ "**/*.{js,jsx,ts,tsx}": "eslint --fix"
105
111
  }
106
112
  }
@@ -3355,11 +3355,6 @@ declare namespace Cypress {
3355
3355
  * @default false
3356
3356
  */
3357
3357
  experimentalOriginDependencies?: boolean
3358
- /**
3359
- * Enables support for `cy.prompt`, an AI-powered command that turns natural language steps into executable Cypress test code.
3360
- * @default false
3361
- */
3362
- experimentalPromptCommand?: boolean
3363
3358
  }
3364
3359
 
3365
3360
  /**