-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 909 Bytes
/
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
{
"name": "addfileextension",
"displayName": "AddFileExtension",
"description": "Allows to add a file by giving a path relative to the working folder.",
"repository": {
"type": "git",
"url": "https://github.com/bgse/vsc-addfileextension.git"
},
"version": "0.1.4",
"publisher": "bgse",
"engines": {
"vscode": "^1.20.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:addfileextension.addFile"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "addfileextension.addFile",
"title": "Folder: Add File"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
}
}