Files
cypress/packages/errors/package.json
Bill Glesias d5cc26de3d chore: unify migrated packages (#32819)
* add readme note in root

* use declarations instead of src root and ship it with package. also use tsconfig.json instead of tsconfig.base as it has better IDE support. Also add a watcher

* use declarations instead of src root and ship it with package. also use tsconfig.json instead of tsconfig.base as it has better IDE support. Also add a watcher

* use declarations instead of src root and ship it with package. also use tsconfig.json instead of tsconfig.base as it has better IDE support. Also add a watcher

* use declarations instead of src root and ship it with package. also use tsconfig.json instead of tsconfig.base as it has better IDE support. Also add a watcher

* use declarations instead of src root and ship it with package. also use tsconfig.json instead of tsconfig.base as it has better IDE support. Also add a watcher

* use declarations instead of src root and ship it with package. also use tsconfig.json instead of tsconfig.base as it has better IDE support. Also add a watcher

* use declarations instead of src root and ship it with package. also use tsconfig.json instead of tsconfig.base as it has better IDE support. Also add a watcher

* use declarations instead of src root and ship it with package. also use tsconfig.json instead of tsconfig.base as it has better IDE support. Also add a watcher

* use declarations instead of src root and ship it with package. also use tsconfig.json instead of tsconfig.base as it has better IDE support. Also add a watcher
2025-10-27 20:07:46 -04:00

58 lines
1.6 KiB
JSON

{
"name": "@packages/errors",
"version": "0.0.0-development",
"description": "Error definitions and utilities for Cypress",
"main": "cjs/index.js",
"module": "esm/index.js",
"browser": "esm/index.js",
"files": [
"cjs/*",
"esm/*"
],
"types": "cjs/index.d.ts",
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build-prod": "yarn build",
"build:cjs": "rimraf cjs && tsc -p tsconfig.cjs.json",
"build:esm": "rimraf esm && tsc -p tsconfig.esm.json",
"check-ts": "tsc -p tsconfig.cjs.json --noEmit && yarn -s tslint -p tsconfig.cjs.json",
"clean": "rimraf cjs esm",
"lint": "eslint",
"test": "yarn test-unit",
"test-unit": "vitest run",
"test-debug": "vitest --inspect-brk --no-file-parallelism --test-timeout=0",
"tslint": "tslint --config ../ts/tslint.json --project .",
"watch": "yarn build:cjs --watch & yarn build:esm --watch"
},
"dependencies": {
"ansi_up": "5.0.0",
"axios": "^1.7.9",
"chalk": "^4.1.2",
"lodash": "^4.17.21",
"pluralize": "8.0.0",
"strip-ansi": "6.0.1"
},
"devDependencies": {
"@packages/eslint-config": "0.0.0-development",
"@packages/server": "0.0.0-development",
"@packages/ts": "0.0.0-development",
"@packages/types": "0.0.0-development",
"@types/node": "22.18.7",
"@types/pngjs": "^6.0.1",
"ansi-styles": "^5",
"ci-info": "^4.1.0",
"eslint": "^9.31.0",
"globby": "^11.1.0",
"jiti": "^2.4.2",
"pngjs": "^7.0.0",
"rimraf": "6.0.1",
"vitest": "^3.2.4",
"xvfb-maybe": "^0.2.1"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json}": "eslint --fix"
},
"nx": {}
}