-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (94 loc) · 2.02 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "polyglot",
"displayName": "Polyglot-Edu",
"description": "Enables the execution of AI-driven and Gamified Learning Paths.",
"icon": "logo-polyglot.png",
"version": "0.0.8",
"publisher": "Polyglot",
"engines": {
"vscode": "^1.74.0"
},
"files": [
"media",
"README.md",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "https://github.com/SaraFerrari99/webview_tirocinio.git",
"logo": "https://i.postimg.cc/gjCQ9yVB/Bell.jpg"
},
"categories": [
"Other"
],
"activationEvents": [
"onView: nodeDependencies"
],
"browser": "./dist/web/extension.js",
"main": "./out/web/extension.js",
"contributes": {
"views": {
"path": [
{
"id": "nodeDependencies",
"name": "nodeDependencies",
"contextualTitle": "Path"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "path",
"title": "Polyglot",
"icon": "media/path.png"
}
]
},
"commands": [
{
"command": "extension.welcome",
"title": "Welcome",
"category": "Polyglot"
},
{
"command": "extension.page2",
"title": "Open Description Test",
"category": "Polyglot"
}
]
},
"icons": {
"light": "media/path.png",
"dark": "media/path.png"
},
"scripts": {
"vscode:prepublish": "npm run package-web",
"compile-web": "webpack",
"watch-web": "webpack --mode production --devtool hidden-source-map",
"package-web": "webpack --mode production --devtool hidden-source-map"
},
"devDependencies": {
"@types/jquery": "^3.5.25",
"@types/mocha": "^10.0.3",
"@types/node": "^16.18.61",
"@types/vscode": "^1.73.0",
"@types/webpack": "^5.28.4",
"@types/webpack-env": "^1.18.3",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.26.0",
"process": "^0.11.10",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"axios": "^1.5.1",
"git": "^0.1.5",
"helmet": "^7.1.0",
"node-fetch": "^3.3.2",
"path-browserify": "^1.0.1"
}
}