-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.45 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.45 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
{
"name": "cypress-codegen",
"packageManager": "bun@1.3.11",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"cypress-codegen": "dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/ExpediaGroup/cypress-codegen.git"
},
"bugs": {
"url": "https://github.com/ExpediaGroup/cypress-codegen/issues"
},
"license": "Apache-2.0",
"dependencies": {
"@babel/core": "7.29.0",
"chalk": "5.6.2",
"commander": "14.0.3",
"glob": "13.0.6",
"prettier": "3.8.1"
},
"peerDependencies": {
"cypress": ">=13"
},
"devDependencies": {
"@total-typescript/ts-reset": "0.6.1",
"@types/babel__generator": "7.27.0",
"@types/bun": "1.3.11",
"@types/react": "19.2.14",
"cypress": "15.13.0",
"husky": "9.1.7",
"eslint": "10.2.0",
"eslint-plugin-cypress": "6.2.3",
"react": "19.2.4",
"react-dom": "19.2.4",
"tsup": "8.5.1",
"typescript": "5.9.3",
"typescript-eslint": "8.58.0",
"vite": "7.3.2"
},
"scripts": {
"build": "tsup src/index.ts src/cli.ts --clean --dts --format cjs",
"cypress:open": "cypress open",
"cypress:component": "cypress run --component",
"cypress:e2e": "cypress run",
"format": "prettier --write .",
"format-check": "prettier .",
"lint": "eslint .",
"prepack": "bun run build",
"prepare": "husky",
"test": "bun test"
}
}