-
-
Notifications
You must be signed in to change notification settings - Fork 216
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.8 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
{
"name": "mlc-verify-angular",
"version": "0.0.0",
"private": "true",
"type": "module",
"scripts": {
"verify": "npm ci && npm run start",
"verify:ci": "npm ci && npm run build",
"clean": "shx rm -fr dist *.tsbuildinfo src/assets",
"clean:production": "shx rm -fr production",
"build:msg": "echo Building angular-client example:",
"build": "npm run build:msg && npm run clean && npm run clean:production && vite build",
"start": "npm run clean && vite dev",
"watch:tsc": "tsc --build tsconfig.app.json --watch",
"reset:repo": "git clean -f -X -d"
},
"dependencies": {
"@angular/common": "~22.0.8",
"@angular/compiler": "~22.0.8",
"@angular/core": "~22.0.8",
"@angular/platform-browser": "~22.0.8",
"@codingame/monaco-vscode-api": "^36.0.0",
"@codingame/monaco-vscode-files-service-override": "^36.0.0",
"@codingame/monaco-vscode-json-default-extension": "^36.0.0",
"monaco-languageclient": "../../packages/client",
"rxjs": "~7.8.2",
"vscode": "npm:@codingame/monaco-vscode-extension-api@^36.0.0",
"zone.js": "~0.16.2"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "~2.6.3",
"@angular/build": "~22.0.8",
"@angular/cli": "~22.0.8",
"@angular/compiler-cli": "~22.0.8",
"@codingame/esbuild-import-meta-url-plugin": "~1.0.3",
"@types/node": "~24.10.15",
"shx": "~0.4.0",
"typescript": "~6.0.3",
"vite": "~8.1.5"
},
"overrides": {
"@hono/node-server": "~2.0.11",
"brace-expansion": "~5.0.8",
"dompurify": "~3.4.12",
"fast-uri": "~3.1.4",
"monaco-languageclient": "../../packages/client",
"vscode-ws-jsonrpc": "../../packages/vscode-ws-jsonrpc"
},
"allowScripts": {
"esbuild": false,
"@parcel/watcher": false,
"lmdb": false,
"msgpackr-extract": false
}
}