This repository has been archived by the owner on Sep 23, 2024. It is now read-only.
forked from TypeFox/monaco-languageclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.54 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
{
"private": true,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "~5.48.0",
"@typescript-eslint/parser": "~5.48.0",
"@types/node": "~16.18.11",
"@types/vscode": "~1.69.1",
"editorconfig": "~1.0.1",
"eslint": "~8.31.0",
"eslint-config-standard": "~17.0.0",
"eslint-plugin-header": "~3.1.1",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-promise": "~6.1.1",
"eslint-plugin-unused-imports": "~2.0.0",
"shx": "~0.3.4",
"tslib": "~2.4.1",
"typescript": "~4.8.4",
"vite": "~4.0.4",
"path-browserify": "~1.0.1"
},
"resolutions": {
"vscode-languageserver-types": "3.17.2"
},
"engines": {
"node": ">=16.11.0",
"npm": ">=8.0.0"
},
"volta": {
"node": "16.18.1",
"npm": "8.19.3"
},
"scripts": {
"clean": "npm run clean --workspaces",
"compile": "npm run compile --workspaces",
"lint": "npm run lint --workspaces",
"dev": "vite",
"dev:debug": "vite --debug --force",
"report:versions": "echo Reporting versions: && echo tsc: && tsc --version && echo npm: && npm --version && echo node: && node --version",
"build": "npm run report:versions && 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:example:server": "npm run build --workspace packages/examples/server && npm run webpack:build --workspace packages/examples/client",
"build:example:browser-lsp": "npm run build --workspace packages/examples/browser-lsp",
"build:example:browser": "npm run build --workspace packages/examples/browser",
"build:example:client": "npm run build --workspace packages/examples/client",
"build:verify:webpack": "npm run build --workspace packages/verify/webpack",
"build:verify:vite": "npm run build --workspace packages/verify/vite",
"start:example:server": "npm run start --workspace packages/examples/server",
"start:example:angular": "npm run start --workspace packages/examples/angular-client",
"start:verify:webpack": "npm run start --workspace packages/verify/webpack",
"start:verify:vite": "npm run start --workspace packages/verify/vite"
},
"workspaces": [
"packages/client",
"packages/vscode-ws-jsonrpc",
"packages/examples/server",
"packages/examples/client",
"packages/examples/browser-lsp",
"packages/examples/browser",
"packages/examples/react-client",
"packages/examples/angular-client",
"packages/verify/webpack",
"packages/verify/vite"
]
}