-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.3 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
{
"name": "simple-new-file",
"displayName": "Simple New File",
"description": "Create new files from the command palette.",
"version": "1.1.2",
"publisher": "fayras",
"engines": {
"vscode": "^1.29.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.simpleNewFile"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.simpleNewFile",
"title": "Simple New File"
}
],
"keybindings": [
{
"command": "extension.simpleNewFile",
"key": "alt+ctrl+n",
"mac": "alt+cmd+n"
}
],
"configuration": [
{
"title": "Simple New File configuration",
"properties": {
"simple-new-file.defaultPath": {
"type": "string",
"default": "",
"description": "Every time you activate the extension, this path will be filled automatically for you."
},
"simple-new-file.showDetails": {
"type": "boolean",
"default": false,
"description": "Setting this option will show or hide the relative path of the file/directory to the root of the active workspace."
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.7",
"typescript": "^3.5.1",
"vscode": "^1.1.37"
},
"dependencies": {
"mkdirp": "^0.5.5"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fayras/vscode-simple-new-file"
},
"bugs": {
"url": "https://github.com/fayras/vscode-simple-new-file/issues"
},
"icon": "imgs/icon.png"
}