-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.01 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
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "vsce-script",
"displayName": "Vsce Script",
"publisher": "waynewaynetsai",
"description": "Extension runtime with automation api for VS Code and Vim extension",
"version": "1.1.4",
"engines": {
"vscode": "^1.65.0"
},
"preview": true,
"icon": "images/logo.png",
"keywords": [
"vim",
"automation"
],
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": " https://github.com/waynewaynetsai/vsce-script.git"
},
"homepage": "https://github.com/waynewaynetsai/Vsce-Script",
"activationEvents": [
"*"
],
"main": "./dist/extension.js",
"extensionDependencies": [
"IBM.output-colorizer",
"vscodevim.vim"
],
"contributes": {
"commands": [
{
"title": "Vsce Script: Load Script Project",
"command": "vsce-script.reloadScript"
},
{
"title": "Vsce Script: Open Script Project",
"command": "vsce-script.openProject"
},
{
"title": "Vsce Script: Create Script Project",
"command": "vsce-script.createProject"
},
{
"title": "Vsce Script: Select Another Script Project",
"command": "vsce-script.selectAnotherScriptProject"
},
{
"title": "Vsce Script: Show All Commands",
"command": "vsce-script.showAllCommands"
},
{
"title": "Vsce Script: Upgrade Library To Latest Version",
"command": "vsce-script.upgradeLibrary"
},
{
"title": "Vsce Script: Select Another Version of Library",
"command": "vsce-script.selectAnotherLibraryVersion"
},
{
"title": "Vsce Script: Copy Registered Command ID",
"command": "vsce-script.copyRegisteredCommandId"
}
],
"configuration": {
"title": "Vsce Script",
"properties": {
"vsce-script.projectPath": {
"type": "string",
"default": "",
"description": "Vsce Script Project path"
},
"vsce-script.commandPrefix": {
"type": "string",
"default": "vsce-script",
"description": "Vsce Script Command prefix"
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "webpack --mode production",
"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": "yarn run compile-tests && yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@types/vscode": "1.65",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"@vscode/test-electron": "^1.6.2",
"copy-webpack-plugin": "^10.2.4",
"eslint": "^8.1.0",
"glob": "^7.1.7",
"mocha": "^9.1.3",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.5",
"typescript": "^4.4.4",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0",
"xmldom": "^0.6.0"
},
"dependencies": {
"edit-json-file": "^1.7.0",
"fs-extra": "^10.1.0",
"injection": "^1.8.6",
"reflect-metadata": "^0.1.13"
}
}