-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 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
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
97
98
99
100
101
102
103
104
105
106
107
{
"name": "vscode-outdated",
"displayName": "Outdated",
"publisher": "fabiospampinato",
"repository": "github:fabiospampinato/vscode-outdated",
"description": "A super quick way to update npm dependencies, via a code lens.",
"icon": "resources/logo-128x128.png",
"version": "1.2.0",
"main": "dist/index.js",
"activationEvents": [
"onLanguage:json"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Outdated - Configuration",
"properties": {
"outdated.enabled": {
"type": "boolean",
"description": "Whether the code lens should be enabled or not",
"default": true
},
"outdated.badges.enabled": {
"type": "boolean",
"description": "Whether the inline badges should be rendered or not",
"default": true
}
}
},
"commands": [
{
"command": "outdated.bump",
"title": "Outdated: Bump"
},
{
"command": "outdated.disable",
"title": "Outdated: Disable"
},
{
"command": "outdated.enable",
"title": "Outdated: Enable"
},
{
"command": "outdated.toggle",
"title": "Outdated: Toggle"
},
{
"command": "outdated.toggleBadges",
"title": "Outdated: Toggle Badges"
},
{
"command": "outdated.refresh",
"title": "Outdated: Refresh"
}
],
"menus": {
"commandPalette": [
{
"command": "outdated.bump",
"when": "false"
}
]
}
},
"scripts": {
"bundle:dev": "tsex bundle --external vscode --format cjs --platform node --no-declare",
"bundle:prod": "tsex bundle --external vscode --format cjs --platform node --minify",
"clean": "tsex clean",
"compile": "tsex compile",
"debug": "code --extensionDevelopmentPath $PWD --inspect-extensions 9222",
"package": "vsce package",
"prepublishOnly": "scex -bs clean bundle:prod",
"vscode:prepublish": "scex -bs clean bundle:prod",
"dev": "scex -bs bundle:dev debug",
"prod": "scex -bs bundle:prod debug"
},
"categories": [
"Other"
],
"engines": {
"vscode": "^1.87.0"
},
"keywords": [
"vscode",
"vsc",
"extension",
"npm",
"outdated",
"update",
"bump",
"dependencies"
],
"dependencies": {
"string-escape-regex": "^1.0.0",
"tiny-jsonc": "^1.0.1",
"vscode-extras": "^1.8.0",
"zeptoid": "^1.0.1"
},
"devDependencies": {
"@types/node": "^18.19.26",
"@types/vscode": "^1.87.0",
"esbuild": "0.20.2",
"scex": "^1.1.0",
"tsex": "^3.2.1",
"typescript": "^5.4.3"
}
}