-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.45 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.45 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
56
57
58
{
"name": "project-name",
"displayName": "project-name",
"version": "0.0.1",
"engines": {
"vscode": "^1.74.0"
},
"main": "dist/extension/index.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "project-name-sidebar",
"title": "Project Name",
"icon": "./assets/icon.svg"
}
]
},
"views": {
"project-name-sidebar": [
{
"type": "webview",
"id": "project-name-panel",
"name": "Project Name",
"icon": "./assets/icon.svg",
"contextualTitle": "Project Name"
}
]
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "^1.13.0",
"@angular-devkit/build-angular": "^18.2.13",
"@angular/build": "^18.2.13",
"@tomjs/vite-plugin-vscode": "^3.2.1",
"@types/node": "^20.17.17",
"@types/vscode": "^1.97.0",
"@types/vscode-webview": "^1.57.5",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^9.16.0",
"typescript": "~5.5.2",
"vite": "^6.1.0"
},
"dependencies": {
"@angular/common": "^18.2.13",
"@angular/core": "^18.2.13",
"@angular/platform-browser": "^18.2.13",
"@angular/platform-browser-dynamic": "^18.2.13",
"@vscode-elements/elements-lite": "^0.3.0",
"tslib": "^2.3.0"
}
}