-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.4 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
{
"name": "executing-command-template",
"displayName": "Executing Command Template",
"description": "Store command templates and run them as needed",
"version": "0.0.1",
"engines": {
"vscode": "^1.38.0"
},
"license": "MIT",
"repository": {
"url": "https://github.com/Handiwork/excuting-command-template.git"
},
"publisher": "Handiwork",
"categories": [
"Other"
],
"activationEvents": [
"onCommand:cmdtpl.initialize",
"workspaceContains:.vscode/cmdtpl.json"
],
"main": "./build/extension.js",
"contributes": {
"commands": [
{
"command": "cmdtpl.initialize",
"title": "Initialize Command Templates"
},
{
"command": "cmdtpl.usePathToRun",
"title": "Use Path to Run...",
"icon": {
"light": "./resources/light/run.svg",
"dark": "./resources/dark/run.svg"
}
},
{
"command": "cmdtpl.viewConfigFile",
"title": "View Config File",
"icon": {
"light": "./resources/light/edit.svg",
"dark": "./resources/dark/edit.svg"
}
}
],
"views": {
"explorer": [
{
"id": "commandTemplate",
"name": "Command Templates",
"when": "activeEditor"
}
]
},
"menus": {
"explorer/context": [
{
"command": "cmdtpl.usePathToRun",
"title": "Use Path to Run...",
"group": "1_cmdtpl"
}
],
"view/title": [
{
"command": "cmdtpl.viewConfigFile",
"when": "view == commandTemplate",
"group": "navigation"
}
]
},
"jsonValidation": [
{
"fileMatch": ".vscode/cmdtpl.json",
"url": "./resources/config-schema.json"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "node ./scripts/build.js",
"watch": "node ./scripts/watch.js",
"pretest": "yarn run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/glob": "^7.1.4",
"@types/lodash": "^4.14.173",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.2",
"@types/vscode": "^1.60.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.0.1",
"glob": "^7.1.7",
"mocha": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.4.3",
"vscode-test": "^1.6.1",
"webpack": "^5.53.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"jsonc-parser": "^3.0.0",
"lodash": "^4.17.21"
}
}