Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
runs-on: ubuntu-latest
env:
CURSORLESS_REPO_ROOT: ${{ github.workspace }}
ESLINT_USE_FLAT_CONFIG: false

steps:
- name: Checkout repository
Expand Down
11 changes: 5 additions & 6 deletions cursorless.nvim/node/command-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,18 @@
"main": "./index/index.cjs",
"private": true,
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "8.0.4",
"@types/mocha": "10.0.10",
"@types/node": "20.17.50",
"@types/rimraf": "^3.0.0",
"@types/vscode": "^1.53.0",
"@types/vscode": "1.53.0",
"@typescript-eslint/eslint-plugin": "8.32.1",
"@typescript-eslint/parser": "8.32.1",
"esbuild": "0.25.4",
"eslint": "8.57.1",
"glob": "^7.1.6",
"eslint": "9.27.0",
"glob": "11.0.0",
"mocha": "8.1.3",
"typescript": "5.8.3",
"vscode-test": "^1.4.1",
"vscode-test": "1.6.1",
"neovim": "^5.0.1"
},
"dependencies": {
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"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:ts": "cross-env ESLINT_USE_FLAT_CONFIG=false 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",
Expand All @@ -32,14 +32,15 @@
"@types/node": "20.17.50",
"@typescript-eslint/eslint-plugin": "8.32.1",
"@typescript-eslint/parser": "8.32.1",
"cross-env": "7.0.3",
"esbuild": "0.25.4",
"eslint": "8.57.1",
"eslint-config-prettier": "10.1.5",
"eslint-import-resolver-typescript": "4.3.5",
"eslint-import-resolver-typescript": "4.4.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-unicorn": "56.0.1",
"eslint-plugin-unused-imports": "4.1.4",
"eslint": "9.27.0",
"prettier-plugin-tailwindcss": "0.6.11",
"prettier": "3.3.3",
"syncpack": "13.0.4",
Expand Down
16 changes: 8 additions & 8 deletions packages/common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@
"author": "",
"license": "MIT",
"dependencies": {
"lodash-es": "^4.17.21",
"vscode-uri": "^3.0.8"
"lodash-es": "4.17.21",
"vscode-uri": "3.1.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/js-yaml": "4.0.9",
"@types/lodash-es": "4.17.12",
"@types/mocha": "^10.0.9",
"cross-spawn": "7.0.5",
"fast-check": "3.22.0",
"js-yaml": "^4.1.0",
"mocha": "^10.7.3"
"@types/mocha": "10.0.10",
"cross-spawn": "7.0.6",
"fast-check": "4.1.1",
"js-yaml": "4.1.0",
"mocha": "11.5.0"
},
"types": "./out/index.d.ts",
"exports": {
Expand Down
6 changes: 3 additions & 3 deletions packages/cursorless-cheatsheet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
"dependencies": {
"@cursorless/common": "workspace:*",
"@cursorless/node-common": "workspace:*",
"immer": "^10.1.1",
"lodash-es": "^4.17.21",
"node-html-parser": "^6.1.13"
"immer": "10.1.1",
"lodash-es": "4.17.21",
"node-html-parser": "7.0.1"
},
"devDependencies": {
"@types/lodash-es": "4.17.12"
Expand Down
24 changes: 12 additions & 12 deletions packages/cursorless-engine/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,26 +24,26 @@
"@cursorless/common": "workspace:*",
"@cursorless/node-common": "workspace:*",
"@cursorless/sentence-parser": "workspace:*",
"immer": "^10.1.1",
"immutability-helper": "^3.1.1",
"itertools": "^2.3.2",
"lodash-es": "^4.17.21",
"immer": "10.1.1",
"immutability-helper": "3.1.1",
"itertools": "2.4.1",
"lodash-es": "4.17.21",
"moo": "0.5.2",
"nearley": "2.20.1",
"talon-snippets": "1.3.0",
"uuid": "^10.0.0",
"zod": "3.23.8"
"uuid": "11.1.0",
"zod": "3.25.28"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/js-yaml": "4.0.9",
"@types/lodash-es": "4.17.12",
"@types/mocha": "^10.0.9",
"@types/moo": "0.5.9",
"@types/mocha": "10.0.10",
"@types/moo": "0.5.10",
"@types/nearley": "2.11.5",
"@types/sinon": "17.0.4",
"@types/uuid": "^10.0.0",
"js-yaml": "^4.1.0",
"mocha": "^10.7.3",
"@types/uuid": "10.0.0",
"js-yaml": "4.1.0",
"mocha": "11.5.0",
"sinon": "20.0.0"
},
"types": "./out/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/cursorless-everywhere-talon-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"dependencies": {
"@cursorless/common": "workspace:*",
"@cursorless/cursorless-engine": "workspace:*",
"lodash-es": "^4.17.21",
"vscode-uri": "^3.0.8"
"lodash-es": "4.17.21",
"vscode-uri": "3.1.0"
},
"devDependencies": {
"@types/lodash-es": "4.17.12"
Expand Down
4 changes: 2 additions & 2 deletions packages/cursorless-everywhere-talon-e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@cursorless/test-case-recorder": "workspace:*"
},
"devDependencies": {
"@types/mocha": "^10.0.9",
"mocha": "^10.7.3"
"@types/mocha": "10.0.10",
"mocha": "11.5.0"
}
}
6 changes: 3 additions & 3 deletions packages/cursorless-neovim-e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
"author": "",
"license": "MIT",
"devDependencies": {
"@types/chai": "^5.0.0",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "4.17.10",
"@types/chai": "5.2.2",
"@types/js-yaml": "4.0.9",
"@types/lodash": "4.17.17",
"@types/sinon": "17.0.4",
"neovim": "5.3.0"
},
Expand Down
12 changes: 6 additions & 6 deletions packages/cursorless-neovim/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@
"@cursorless/test-case-recorder": "workspace:*"
},
"devDependencies": {
"@types/chai": "^5.0.0",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "4.17.10",
"@types/uuid": "^10.0.0",
"lodash": "^4.17.21",
"@types/chai": "5.2.2",
"@types/js-yaml": "4.0.9",
"@types/lodash": "4.17.17",
"@types/uuid": "10.0.0",
"lodash": "4.17.21",
"neovim": "5.3.0",
"vscode-uri": "^3.0.8"
"vscode-uri": "3.1.0"
}
}
2 changes: 1 addition & 1 deletion packages/cursorless-org/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"autoprefixer": "10.4.21",
"eslint": "8.57.1",
"eslint": "9.27.0",
"eslint-config-next": "15.3.2",
"http-server": "14.1.1",
"postcss": "8.5.3",
Expand Down
4 changes: 2 additions & 2 deletions packages/cursorless-tutorial/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
"dependencies": {
"@cursorless/common": "workspace:*",
"@cursorless/cursorless-engine": "workspace:*",
"immer": "^10.1.1",
"lodash-es": "^4.17.21"
"immer": "10.1.1",
"lodash-es": "4.17.21"
},
"devDependencies": {
"@types/lodash-es": "4.17.12"
Expand Down
16 changes: 8 additions & 8 deletions packages/cursorless-vscode-e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@
"@cursorless/common": "workspace:*",
"@cursorless/node-common": "workspace:*",
"@cursorless/vscode-common": "workspace:*",
"immer": "^10.1.1",
"lodash-es": "^4.17.21"
"immer": "10.1.1",
"lodash-es": "4.17.21"
},
"devDependencies": {
"@types/chai": "^5.0.0",
"@types/js-yaml": "^4.0.9",
"@types/chai": "5.2.2",
"@types/js-yaml": "4.0.9",
"@types/lodash-es": "4.17.12",
"@types/mocha": "^10.0.9",
"@types/mocha": "10.0.10",
"@types/sinon": "17.0.4",
"@types/vscode": "1.82.0",
"chai": "^5.1.1",
"js-yaml": "^4.1.0",
"mocha": "^10.7.3",
"chai": "5.2.0",
"js-yaml": "4.1.0",
"mocha": "11.5.0",
"sinon": "20.0.0"
},
"types": "./out/index.d.ts",
Expand Down
22 changes: 11 additions & 11 deletions packages/cursorless-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1262,18 +1262,18 @@
},
"devDependencies": {
"@types/fs-extra": "11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/js-yaml": "4.0.9",
"@types/lodash-es": "4.17.12",
"@types/nearley": "2.11.5",
"@types/node": "20.17.50",
"@types/semver": "^7.5.8",
"@types/semver": "7.7.0",
"@types/sinon": "17.0.4",
"@types/tinycolor2": "1.4.6",
"@types/uuid": "^10.0.0",
"@types/uuid": "10.0.0",
"@types/vscode": "1.82.0",
"esbuild": "0.25.4",
"fast-xml-parser": "^4.5.0",
"fs-extra": "11.2.0",
"fast-xml-parser": "5.2.3",
"fs-extra": "11.3.0",
"sinon": "20.0.0"
},
"dependencies": {
Expand All @@ -1284,16 +1284,16 @@
"@cursorless/node-common": "workspace:*",
"@cursorless/test-case-recorder": "workspace:*",
"@cursorless/vscode-common": "workspace:*",
"glob": "^11.0.0",
"itertools": "^2.3.2",
"lodash-es": "^4.17.21",
"glob": "11.0.0",
"itertools": "2.4.1",
"lodash-es": "4.17.21",
"nearley": "2.20.1",
"semver": "^7.6.3",
"semver": "7.7.2",
"talon-snippets": "1.3.0",
"tinycolor2": "1.6.0",
"trie-search": "2.0.0",
"uuid": "^10.0.0",
"vscode-uri": "^3.0.8"
"uuid": "11.1.0",
"vscode-uri": "3.1.0"
},
"type": "module"
}
16 changes: 8 additions & 8 deletions packages/meta-updater/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
"dependencies": {
"@cursorless/common": "workspace:*",
"@pnpm/lockfile-file": "9.1.3",
"@pnpm/logger": "^5.2.0",
"@pnpm/logger": "5.2.0",
"@pnpm/types": "12.2.0",
"@types/normalize-path": "^3.0.2",
"js-yaml": "^4.1.0",
"lodash-es": "^4.17.21",
"normalize-path": "^3.0.0",
"path-exists": "^5.0.0",
"type-fest": "4.26.1"
"@types/normalize-path": "3.0.2",
"js-yaml": "4.1.0",
"lodash-es": "4.17.21",
"normalize-path": "3.0.0",
"path-exists": "5.0.0",
"type-fest": "4.41.0"
},
"main": "./out/index.js",
"types": "./out/index.d.ts",
Expand All @@ -31,7 +31,7 @@
}
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/js-yaml": "4.0.9",
"@types/lodash-es": "4.17.12",
"esbuild": "0.25.4"
},
Expand Down
8 changes: 4 additions & 4 deletions packages/neovim-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
"@cursorless/common": "workspace:*",
"@cursorless/neovim-registry": "workspace:*",
"@cursorless/node-common": "workspace:*",
"@types/lodash": "4.17.10",
"@types/uuid": "^10.0.0",
"@types/lodash": "4.17.17",
"@types/uuid": "10.0.0",
"@types/vscode": "1.82.0",
"lodash": "^4.17.21",
"lodash": "4.17.21",
"neovim": "5.3.0",
"vscode-uri": "^3.0.8"
"vscode-uri": "3.1.0"
},
"type": "module"
}
12 changes: 6 additions & 6 deletions packages/node-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@
},
"dependencies": {
"@cursorless/common": "workspace:*",
"glob": "^11.0.0",
"lodash-es": "^4.17.21"
"glob": "11.0.0",
"lodash-es": "4.17.21"
},
"devDependencies": {
"@types/chai": "^5.0.0",
"@types/js-yaml": "^4.0.9",
"@types/chai": "5.2.2",
"@types/js-yaml": "4.0.9",
"@types/lodash-es": "4.17.12",
"chai": "^5.1.1",
"js-yaml": "^4.1.0"
"chai": "5.2.0",
"js-yaml": "4.1.0"
}
}
4 changes: 2 additions & 2 deletions packages/sentence-parser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
}
},
"devDependencies": {
"@types/mocha": "^10.0.9",
"mocha": "^10.7.3"
"@types/mocha": "10.0.10",
"mocha": "11.5.0"
}
}
6 changes: 3 additions & 3 deletions packages/test-case-recorder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
"@cursorless/common": "workspace:*",
"@cursorless/cursorless-engine": "workspace:*",
"@cursorless/node-common": "workspace:*",
"glob": "^11.0.0",
"immutability-helper": "^3.1.1",
"lodash-es": "^4.17.21"
"glob": "11.0.0",
"immutability-helper": "3.1.1",
"lodash-es": "4.17.21"
},
"devDependencies": {
"@types/lodash-es": "4.17.12"
Expand Down
Loading
Loading