-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.13 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.13 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "backimage",
"displayName": "backImage",
"description": "This is an extension for changing the background image of vscode.",
"version": "1.1.6",
"license": "MIT",
"publisher": "ROBOTofficial",
"icon": "resources/icon.png",
"engines": {
"vscode": "^1.94.0"
},
"categories": [
"Other"
],
"extensionKind": [
"ui",
"workspace"
],
"activationEvents": [
"*"
],
"main": "./dist/extension.js",
"l10n": "./l10n",
"contributes": {
"keybindings": [],
"commands": [
{
"command": "extension.backimage.refresh",
"title": "%backimage.refresh-title%",
"icon": "$(refresh)"
},
{
"command": "extension.backimage.restore",
"title": "%backimage.restore-title%",
"icon": "$(discard)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "backimage-explorer",
"title": "BackImage",
"icon": "resources/icon.png"
}
]
},
"views": {
"backimage-explorer": [
{
"id": "extension.backimage.readerView",
"type": "webview",
"name": "%backimage.img-explorer%"
}
]
},
"menus": {
"view/title": [
{
"command": "extension.backimage.refresh",
"group": "navigation",
"when": "view == extension.backimage.readerView"
},
{
"command": "extension.backimage.restore",
"group": "navigation",
"when": "view == extension.backimage.readerView"
}
]
},
"configuration": {}
},
"bugs": {
"url": "https://github.com/ThunLights/BackImage/issues"
},
"homepage": "https://github.com/ThunLights/BackImage",
"repository": {
"type": "git",
"url": "https://github.com/ThunLights/BackImage.git"
},
"scripts": {
"vscode:prepublish": "npm run package",
"vscode:uninstall": "node ./dist/uninstall.js",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/mocha": "^10.0.9",
"@types/node": "22.x",
"@types/uglify-js": "^3.17.5",
"@types/vscode": "^1.94.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.14.0",
"@vscode/sudo-prompt": "^9.3.1",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "3.3.3",
"stylis": "^4.3.4",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"uglify-js": "^3.19.3",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@types/stylis": "^4.2.6",
"@vscode/codicons": "^0.0.36",
"backimage": "file:",
"terser": "^5.36.0",
"zod": "^3.23.8"
}
}