-
-
Notifications
You must be signed in to change notification settings - Fork 182
/
package.json
84 lines (84 loc) · 3.52 KB
/
package.json
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
78
79
80
81
82
83
84
{
"private": true,
"type": "module",
"engines": {
"node": ">=18.19.0",
"npm": ">=10.2.3"
},
"volta": {
"node": "22.12.0",
"npm": "10.9.0",
"pnpm": "9.15.0",
"yarn": "4.5.3"
},
"devDependencies": {
"@codingame/esbuild-import-meta-url-plugin": "~1.0.2",
"@codingame/monaco-vscode-rollup-vsix-plugin": "~11.1.2",
"@eslint/eslintrc": "~3.2.0",
"@eslint/js": "~9.17.0",
"@stylistic/eslint-plugin": "~2.12.1",
"@testing-library/react": "~16.1.0",
"@types/node": "~22.10.2",
"@types/react": "~18.3.14",
"@types/react-dom": "~18.3.3",
"@types/vscode": "~1.95.0",
"@typescript-eslint/eslint-plugin": "~8.18.1",
"@typescript-eslint/parser": "~8.18.1",
"@vitejs/plugin-react": "~4.3.4",
"@vitest/browser": "~2.1.8",
"editorconfig": "~2.0.0",
"esbuild": "~0.24.0",
"eslint": "~9.17.0",
"eslint-plugin-header": "~3.1.1",
"eslint-plugin-import": "~2.31.0",
"eslint-plugin-unused-imports": "~4.1.4",
"globals": "~15.14.0",
"http-server": "~14.1.1",
"minimatch": "~10.0.1",
"playwright": "~1.49.1",
"typescript": "~5.7.2",
"vite": "~6.0.3",
"vite-node": "~2.1.8",
"vitest": "~2.1.8"
},
"scripts": {
"clean": "npm run clean --workspaces",
"compile": "npm run compile --workspaces",
"watch:clean": "tsc --build tsconfig.build.json --clean",
"watch": "tsc --build tsconfig.build.json --watch --verbose",
"lint": "eslint",
"production:build": "npm run production:build --workspace packages/examples",
"production:preview:build": "npm run production:preview:build --workspace packages/examples",
"production:preview": "npm run production:preview --workspace packages/examples",
"dev": "vite",
"dev:debug": "vite --debug --force",
"report:versions:vite": "echo vite: && vite --version && echo vitest: && vitest --version",
"report:versions:node": "echo npm: && npm --version && echo node: && node --version && echo eslint: && eslint --version",
"report:versions:tools": "echo tsc: && tsc --version && echo eslint: && eslint --version && echo pnpm: && pnpm --version && echo yarn: && yarn --version",
"report:versions": "echo Reporting versions: && npm run report:versions:node && npm run report:versions:vite && npm run report:versions:tools",
"build": "npm run build --workspaces",
"build:client": "npm run build --workspace packages/client",
"build:vscode-ws-jsonrpc": "npm run build --workspace packages/vscode-ws-jsonrpc",
"build:wrapper": "npm run build --workspace packages/wrapper",
"build:wrapper-react": "npm run build --workspace packages/wrapper-react",
"build:examples": "npm run build --workspace packages/examples",
"start:example:server:json": "npm run start:server:json --workspace packages/examples",
"start:example:server:python": "npm run start:server:python --workspace packages/examples",
"release:prepare": "npm run reset:repo && npm ci && npm run build && npm run lint && npm run test:run",
"reset:repo": "git clean -f -X -d",
"test": "npm run test:install && vitest --config vitest.config.ts",
"test:run": "npm run test:install && vitest --config vitest.config.ts --run",
"test:debug": "npm run test:playwright -- --inspect-brk=20222 --browser --no-file-parallelism",
"test:install": "playwright install --with-deps chromium"
},
"workspaces": [
"packages/client",
"packages/vscode-ws-jsonrpc",
"packages/wrapper",
"packages/wrapper-react",
"packages/examples"
],
"overrides": {
"vite": "~6.0.3"
}
}