mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-09 00:30:16 -06:00
* fix sync script with updateds npm-packlist * chore: update lerna from 6.6.2 to 8.1.8 and ran lerna repair * chore: pin typescript to ~5.4.5 to avoid importsNotUsedAsValues that was removed in 5.5 and edit workflows and scripts to correctly scope learna packages on v8 snapshot tests [run ci] * fix indentation in comments * remove console.log reference to print current package directory in sync exported npm with cli script
28 lines
631 B
JSON
28 lines
631 B
JSON
{
|
|
"name": "@packages/ts",
|
|
"version": "0.0.0-development",
|
|
"private": true,
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"check-ts": "tsc --noEmit",
|
|
"clean-deps": "rimraf node_modules",
|
|
"postinstall": "patch-package",
|
|
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
|
|
"test": "yarn test-unit",
|
|
"test-unit": "node test",
|
|
"test-watch": "echo 'no watching of tests'"
|
|
},
|
|
"dependencies": {
|
|
"debug": "^4.3.4",
|
|
"ts-node": "^10.9.2",
|
|
"tslib": "2.3.1",
|
|
"typescript-cached-transpile": "^0.0.6"
|
|
},
|
|
"devDependencies": {},
|
|
"files": [
|
|
"register.js",
|
|
"registerDir.js"
|
|
],
|
|
"nx": {}
|
|
}
|