forked from DetachHead/basedpyright
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.93 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.93 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
{
"name": "pyright-root",
"private": true,
"scripts": {
"build:extension:dev": "cd packages/vscode-pyright && npm run webpack",
"build:extension": "cd packages/vscode-pyright && npm run package",
"build:cli:dev": "cd packages/pyright && npm run webpack",
"watch:extension": "cd packages/vscode-pyright && npm run webpack-dev",
"watch:testserver": "cd packages/pyright-internal && npm run webpack:testserver:watch",
"check": "npm run check:syncpack && npm run check:eslint && npm run check:prettier",
"check:syncpack": "syncpack list-mismatches",
"fix:syncpack": "syncpack fix-mismatches --indent \" \" && npm install",
"check:eslint": "eslint .",
"fix:eslint": "eslint --fix .",
"check:prettier": "prettier -c .",
"fix:prettier": "prettier --write .",
"typecheck": "npm exec --workspaces -- tsc --noEmit",
"run:cli": "npm run build:cli:dev && node packages/pyright/index.js",
"run:langserver": "npm run build:cli:dev && node packages/pyright/langserver.index.js --stdio",
"jest": "cd packages/pyright-internal && jest",
"update-python-deps": "uv sync --upgrade",
"update-pyprojectx-lockfile": "python pw --lock",
"typecheck-python": "uv run --no-sync basedpyright",
"ruff-check": "uv run --no-sync ruff check --no-cache && uv run --no-sync ruff format --check --diff",
"ruff-fix": "uv run --no-sync ruff check --no-cache --fix && uv run --no-sync ruff format",
"pylint": "uv run --no-sync pylint basedpyright build pdm_build.py --ignore-paths build/py_latest/upstream",
"test-python": "uv run --no-sync pytest tests",
"generate-docstubs": "uv run --no-sync build/py3_8/generate_docstubs.py",
"localization-helper": "uv run --no-sync build/py_latest/localization_helper.py",
"docs": "uv run --no-sync mkdocs serve --livereload",
"docs:fast": "npm run docs -- --dirty",
"lsp-inspect": "uv run --no-sync lsp-devtools inspect",
"lsp-client": "uv run --no-sync lsp-devtools client -- node packages/pyright/langserver.index.js --stdio"
},
"devDependencies": {
"@detachhead/ts-helpers": "^16.2.0",
"@types/glob": "^8.1.0",
"@types/node": "^22.18.12",
"@types/yargs": "^16.0.9",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"cross-env": "^10.1.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"glob": "^8.1.0",
"jsonc-parser": "^3.3.1",
"npm-check-updates": "^16.14.20",
"p-queue": "^6.6.2",
"prettier": "2.8.8",
"syncpack": "~10.9.3",
"throw-expression": "^2.0.1",
"typescript": "~5.5.4",
"word-wrap": "1.2.5",
"yargs": "^16.2.0"
},
"workspaces": [
"packages/*"
]
}