-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.59 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.59 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
{
"name": "devcontainer-install-local-extensions",
"displayName": "DevContainer Install Local Extensions",
"description": "開発コンテナにローカルにインストールされている拡張機能をインストールする設定「dev.containers.defaultExtensions」にローカルにインストールされている全ての拡張機能を自動的に設定する拡張機能です。",
"version": "1.1.0",
"engines": {
"vscode": "^1.99.3",
"node": "22.16.0"
},
"volta": {
"node": "22.16.0"
},
"keywords": [
"DevContainer",
"Extensions",
"Local",
"defaultExtensionsIfInstalledLocally"
],
"icon": "images/icon.png",
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"repository": {
"type": "git",
"url": "https://github.com/AkimeAki/DevContainer-Install-Local-Extensions.git"
},
"main": "./dist/extension.js",
"publisher": "AkimeAki",
"contributes": {
"commands": []
},
"scripts": {
"compile": "webpack",
"package": "webpack --mode production --devtool hidden-source-map",
"build": "rm -rf ./dist/ && npm run compile && npm run vscode:package",
"lint": "biome lint",
"format": "prettier --write ./**/*",
"vscode:package": "vsce package"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/mocha": "10.0.7",
"@types/node": "20.x",
"@types/vscode": "1.91.0",
"@vscode/test-cli": "0.0.9",
"@vscode/test-electron": "2.4.0",
"husky": "9.1.7",
"prettier": "3.5.3",
"prettier-plugin-sh": "0.17.4",
"ts-loader": "9.5.1",
"typescript": "5.4.5",
"vsce": "2.15.0",
"webpack": "5.92.1",
"webpack-cli": "5.1.4"
}
}