cursorless/package.json
Pokey Rule 2444d72b68
Bump all dependency versions (#2669)
## Checklist

- [-] I have added
[tests](https://www.cursorless.org/docs/contributing/test-case-recorder/)
- [-] I have updated the
[docs](https://github.com/cursorless-dev/cursorless/tree/main/docs) and
[cheatsheet](https://github.com/cursorless-dev/cursorless/tree/main/cursorless-talon/src/cheatsheet)
- [x] I have not broken the cheatsheet

---------

Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
2024-10-16 15:32:10 +00:00

70 lines
2.5 KiB
JSON

{
"name": "cursorless",
"version": "0.1.0",
"description": "The root of the Cursorless monorepo",
"main": "index.js",
"scripts": {
"build": "pnpm -r build",
"clean": "pnpm -r clean",
"compile": "tsc --build && pnpm -r --if-present compile:esbuild",
"fix:eslint": "pnpm lint:ts --fix",
"fix:meta": "pnpm run meta-updater:base && pnpm -r exec prettier --write tsconfig.json package.json",
"fix:syncpack": "pnpm syncpack fix-mismatches",
"init-vscode-sandbox": "pnpm --filter=@cursorless/cursorless-vscode init-launch-sandbox",
"lint:meta": "pnpm run meta-updater:base --test",
"lint:ts": "eslint packages --ext ts,tsx,mts",
"lint": "pnpm run lint:meta && syncpack list-mismatches && pnpm run lint:ts",
"meta-updater:base": "pnpm --filter=@cursorless/meta-updater build && meta-updater",
"preinstall": "npx only-allow pnpm",
"test-compile": "tsc --build",
"test": "pnpm compile && pnpm lint && pnpm -F '!test-harness' test && pnpm -F test-harness test",
"generate-grammar": "pnpm -r generate-grammar",
"transform-recorded-tests": "./packages/common/scripts/my-ts-node.js packages/cursorless-engine/src/scripts/transformRecordedTests/index.ts",
"watch": "pnpm run -w --parallel '/^watch:.*/'",
"watch:esbuild": "pnpm run -r --parallel --if-present watch:esbuild",
"watch:tsc": "tsc --build --watch"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@pnpm/meta-updater": "2.0.3",
"@types/node": "20.16.0",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-unicorn": "56.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.8",
"syncpack": "13.0.0",
"typescript": "^5.6.3"
},
"pnpm": {
"patchedDependencies": {
"@docusaurus/theme-search-algolia": "patches/@docusaurus__theme-search-algolia@3.1.0.patch",
"@types/nearley@2.11.5": "patches/@types__nearley@2.11.5.patch",
"nearley@2.20.1": "patches/nearley@2.20.1.patch"
},
"peerDependencyRules": {
"ignoreMissing": [
"react-json-view"
],
"allowedVersions": {
"react": "18",
"react-dom": "18"
}
}
},
"engines": {
"node": ">=20.16.0"
},
"packageManager": "pnpm@9.12.1",
"type": "module"
}