-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.84 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
{
"name": "vscode-sed",
"displayName": "Sed",
"description": "Sed in Visual Studio Code.",
"version": "0.0.4",
"publisher": "vicey",
"license": "MIT",
"repository": "https://github.com/yhvicey/vscode-sed",
"icon": "images/gnu.png",
"keywords": [
"gnu",
"sed"
],
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension",
"contributes": {
"commands": [{
"command": "sed.execute",
"title": "Execute",
"category": "Sed"
},
{
"command": "sed.showExecutablePath",
"title": "Show executable path",
"category": "Sed"
}
],
"configuration": {
"type": "object",
"title": "VSCode Sed Configuration",
"properties": {
"sed.batchSize": {
"type": "number",
"default": 1000,
"description": "Size of every batch of lines passed to sed."
},
"sed.encoding": {
"type": "string",
"default": "utf-8",
"description": "Encoding of processed text."
},
"sed.options": {
"type": "array",
"default": [
"-n"
],
"description": "Options passed to sed."
},
"sed.sedPath": {
"type": [
"string",
"null"
],
"default": null,
"description": "Path to sed executable."
},
"sed.timeout": {
"type": "number",
"default": 1000,
"description": "Maximum execution time of every batch."
}
}
},
"configurationDefaults": {
"sed.batchSize": 1000,
"sed.encoding": "utf-8",
"sed.options": [
"-n"
],
"sed.timeout": 1000
}
},
"scripts": {
"compile": "tsc -p ./",
"package": "vsce package --yarn",
"postinstall": "node ./node_modules/vscode/bin/install",
"release": "vsce publish --yarn",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.0",
"@types/node": "^10.10.1",
"@types/which": "^1.3.1",
"tslint": "^5.11.0",
"typescript": "^2.6.1",
"vsce": "^1.49.2",
"vscode": "^1.1.6"
},
"dependencies": {
"cross-spawn": "^6.0.5",
"which": "^1.3.1"
}
}