-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2 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
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
96
{
"name": "flutter-pubgrade",
"displayName": "Pubgrade",
"description": "Manage packages: check updates, view changelogs, update with one click",
"version": "2.0.1",
"publisher": "KamranBekirov",
"icon": "resources/icon.png",
"author": {
"name": "Kamran Bekirov"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kamranbekirovyz/pubgrade"
},
"keywords": [
"flutter",
"dart",
"packages",
"dependencies",
"pubspec",
"changelog"
],
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:**/pubspec.yaml"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "flutter-pubgrade",
"title": "pubgrade",
"icon": "resources/icon.svg"
}
]
},
"views": {
"flutter-pubgrade": [
{
"id": "pubgradePackages",
"name": "Packages"
}
]
},
"commands": [
{
"command": "pubgrade.refresh",
"title": "Refresh Packages",
"icon": "$(refresh)"
},
{
"command": "pubgrade.updatePackage",
"title": "Update Package"
},
{
"command": "pubgrade.showChangelog",
"title": "Show Changelog"
}
],
"menus": {
"view/title": [
{
"command": "pubgrade.refresh",
"when": "view == pubgradePackages",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.0.0",
"@types/semver": "^7.5.0",
"@types/vscode": "^1.80.0",
"@vscode/vsce": "^3.6.2",
"typescript": "^5.0.0"
},
"dependencies": {
"axios": "^1.6.0",
"js-yaml": "^4.1.0",
"semver": "^7.5.0"
}
}