-
-
Notifications
You must be signed in to change notification settings - Fork 180
/
package.json
77 lines (77 loc) · 3.25 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
{
"private": true,
"type": "module",
"devDependencies": {
"@codingame/esbuild-import-meta-url-plugin": "~1.0.2",
"@codingame/monaco-vscode-rollup-vsix-plugin": "~11.1.1",
"@eslint/js": "~9.14.0",
"@eslint/eslintrc": "~3.2.0",
"@stylistic/eslint-plugin": "~2.11.0",
"@testing-library/react": "~16.0.1",
"@types/node": "~22.9.1",
"@types/react": "~18.3.12",
"@types/react-dom": "~18.3.1",
"@types/vscode": "~1.95.0",
"@typescript-eslint/eslint-plugin": "~8.15.0",
"@typescript-eslint/parser": "~8.15.0",
"@vitejs/plugin-react": "~4.3.3",
"@vitest/browser": "2.1.3",
"editorconfig": "~2.0.0",
"esbuild": "~0.24.0",
"eslint": "~9.14.0",
"eslint-plugin-header": "~3.1.1",
"eslint-plugin-import": "~2.31.0",
"eslint-plugin-unused-imports": "~4.1.4",
"globals": "~15.12.0",
"http-server": "~14.1.1",
"minimatch": "~10.0.1",
"playwright": "~1.49.0",
"typescript": "~5.6.3",
"vite": "~5.4.11",
"vite-node": "2.1.3",
"vitest": "2.1.3",
"webdriverio": "~9.3.0"
},
"volta": {
"node": "22.11.0",
"npm": "10.9.0"
},
"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": "echo Reporting versions: && echo tsc: && tsc --version && echo npm: && npm --version && echo node: && node --version && echo eslint: && eslint --version && echo vite: && vite --version && echo vitest: && vitest --version",
"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:webdriverio",
"test:run": "npm run test:webdriverio:run",
"test:webdriverio": "vitest",
"test:webdriverio:run": "vitest --run",
"test:playwright": "vitest --config vitest.debug.config.ts",
"test:playwright:run": "vitest --config vitest.debug.config.ts --run",
"test:debug": "npm run test:playwright -- --inspect-brk=20222 --browser --no-file-parallelism",
"test:install": "playwright install"
},
"workspaces": [
"packages/client",
"packages/vscode-ws-jsonrpc",
"packages/wrapper",
"packages/wrapper-react",
"packages/examples"
]
}