-
-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.85 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.85 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "cursorless",
"version": "0.1.0",
"description": "The root of the Cursorless monorepo",
"license": "MIT",
"packageManager": "pnpm@10.30.3",
"type": "module",
"engines": {
"node": ">=24.14.0"
},
"scripts": {
"build": "pnpm -r build",
"clean": "pnpm -r clean",
"typecheck": "pnpm -r typecheck",
"fix:meta": "pnpm run meta-updater && pnpm -r exec prettier --write tsconfig.json package.json",
"fix:syncpack": "syncpack fix",
"fix:eslint": "pnpm lint:ts --fix",
"fix:style": "stylelint '**/*.{css,scss}' --ignore-path .gitignore --fix",
"fix:prettier": "prettier --write --list-different .",
"lint:meta": "pnpm run meta-updater --test",
"lint:syncpack": "syncpack lint",
"lint:ts": "eslint packages",
"lint:prettier": "prettier --check .",
"lint:style": "stylelint '**/*.{css,scss}' --ignore-path .gitignore",
"lint": "pnpm run typecheck && pnpm run lint:meta && pnpm run lint:syncpack && pnpm run lint:ts && pnpm run lint:style",
"init-vscode-sandbox": "pnpm -F @cursorless/cursorless-vscode init-launch-sandbox",
"meta-updater": "env NODE_OPTIONS=--import=tsx meta-updater",
"preinstall": "npx only-allow pnpm",
"test": "pnpm -r test",
"test:subset": "pnpm -r test:subset",
"test:update": "pnpm -r test:update",
"test:update:subset": "pnpm -r test:update:subset",
"generate-grammar": "pnpm -r generate-grammar",
"transform-recorded-tests": "pnpm exec ./packages/common/scripts/c-tsx.js ./packages/cursorless-engine/src/scripts/transformRecordedTests/index.ts"
},
"devDependencies": {
"@eslint/config-helpers": "^0.5.3",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@pnpm/meta-updater": "^2.0.6",
"@types/node": "^24.12.0",
"esbuild": "^0.27.4",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-mocha": "^11.2.0",
"eslint-plugin-unicorn": "^63.0.0",
"eslint-plugin-unused-imports": "^4.4.1",
"prettier": "^3.8.1",
"stylelint": "^17.4.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-config-standard-scss": "^17.0.0",
"syncpack": "^14.2.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1"
},
"pnpm": {
"patchedDependencies": {
"@types/nearley@2.11.5": "patches/@types__nearley@2.11.5.patch",
"nearley@2.20.1": "patches/nearley@2.20.1.patch"
},
"overrides": {
"@swc/helpers": "^0.5.17",
"@yarnpkg/shell>cross-spawn": "7.0.6"
},
"peerDependencyRules": {
"allowedVersions": {
"eslint-plugin-import>eslint": "^10.0.0",
"@pnpm/lockfile-file>@pnpm/logger": "^1001.0.1",
"@pnpm/fetch>@pnpm/logger": "^1001.0.1",
"@pnpm/core-loggers>@pnpm/logger": "^1001.0.1"
}
}
}
}