forked from TypeFox/monaco-languageclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.64 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
{
"private": true,
"type": "module",
"devDependencies": {
"@types/vscode": "~1.85.0",
"@typescript-eslint/eslint-plugin": "~6.17.0",
"@typescript-eslint/parser": "~6.17.0",
"editorconfig": "~2.0.0",
"eslint": "~8.56.0",
"eslint-config-standard": "~17.1.0",
"eslint-plugin-header": "~3.1.1",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-promise": "~6.1.1",
"eslint-plugin-unused-imports": "~3.0.0",
"shx": "~0.3.4",
"typescript": "~5.3.3",
"vite": "~5.0.10"
},
"overrides": {
"monaco-editor": "npm:@codingame/monaco-editor-treemended@>=1.85.0 <1.86.0",
"vscode": "npm:@codingame/monaco-vscode-api@>=1.85.0 <1.86.0"
},
"resolutions": {
"monaco-editor": "npm:@codingame/monaco-editor-treemended@>=1.85.0 <1.86.0",
"vscode": "npm:@codingame/monaco-vscode-api@>=1.85.0 <1.86.0"
},
"volta": {
"node": "20.10.0",
"npm": "10.2.3"
},
"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 {**/src/**/*.ts,**/src/**/*.tsx,**/test/**/*.ts,**/test/**/*.tsx}",
"vite:build": "vite build",
"dev": "node --experimental-import-meta-resolve ./node_modules/vite/bin/vite.js",
"dev:debug": "node --experimental-import-meta-resolve ./node_modules/vite/bin/vite.js --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:examples": "npm run build --workspace packages/examples",
"build:verify:webpack": "npm run build --workspace packages/verify/webpack",
"build:verify:vite": "npm run build --workspace packages/verify/vite",
"start:example:server:json": "npm run start:server:json --workspace packages/examples",
"start:example:server:python": "npm run start:server:python --workspace packages/examples",
"start:verify:webpack": "npm run start --workspace packages/verify/webpack",
"start:verify:vite": "npm run start --workspace packages/verify/vite",
"release:prepare": "npm run reset:repo && npm ci && npm run lint && npm run build",
"reset:repo": "git clean -f -X -d"
},
"workspaces": [
"packages/client",
"packages/vscode-ws-jsonrpc",
"packages/examples",
"packages/verify/webpack",
"packages/verify/vite"
]
}