-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.37 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
{
"name": "gotofolder",
"displayName": "Go to Folder",
"description": "Quick go to folder.",
"keywords": [
"quick",
"open folder"
],
"version": "0.1.3",
"publisher": "zjffun",
"engines": {
"vscode": "^1.59.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zjffun/vscode-go-to-folder.git"
},
"bugs": {
"url": "https://github.com/zjffun/vscode-go-to-folder/issues"
},
"homepage": "https://github.com/zjffun/vscode-go-to-folder#readme",
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"browser": "./dist/web/extension.js",
"extensionKind": [
"workspace",
"ui"
],
"contributes": {
"menus": {
"explorer/context": [
{
"command": "gotofolder.quickOpenFolder",
"group": "4_search@99"
}
],
"commandPalette": [
{
"command": "gotofolder.quickOpenFolder"
}
]
},
"commands": [
{
"command": "gotofolder.quickOpenFolder",
"title": "Go to Folder..."
}
]
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "node ./out/test/runTest.js",
"eslint-fix": "eslint --fix .",
"prettier-fix": "prettier --write .",
"watch-web": "webpack --watch",
"compile-web": "webpack --mode production --devtool hidden-source-map",
"test-web": "vscode-test-web --extensionDevelopmentPath=. --extensionTestsPath=./dist/web/test/suite/index.js",
"_vscode:pack": "vsce package",
"_vscode:install": "ls gotofolder-*.vsix | xargs code --install-extension",
"_vscode:uninstall": "code --uninstall-extension zjffun.gotofolder"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/vscode": "^1.59.0",
"@types/webpack-env": "^1.18.0",
"@vscode/test-electron": "^2.3.9",
"@vscode/test-web": "^0.0.56",
"@vscode/vsce": "^2.26.0",
"assert": "^2.0.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"glob": "^7.1.7",
"mocha": "^8.4.0",
"prettier": "3.3.3",
"process": "^0.11.10",
"ts-loader": "^9.2.6",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {},
"icon": "images/icon.png"
}