forked from nobuhito/vscode.printcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
140 lines (140 loc) · 3.75 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "printcode",
"displayName": "PrintCode",
"description": "Added printing function to VS Code!!",
"version": "2.3.1",
"author": {
"name": "Nobuhito SATO",
"email": "[email protected]",
"url": "https://bulkus.net/"
},
"publisher": "nobuhito",
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"Other"
],
"repository": {
"url": "https://github.com/nobuhito/vscode.printcode"
},
"activationEvents": [
"onCommand:extension.print"
],
"license": "SEE LICENSE IN LICENSE",
"icon": "icon.png",
"main": "./src/extension",
"contributes": {
"configuration": [
{
"title": "PrintCode Configuration",
"properties": {
"printcode.tabSize": {
"type": "integer",
"description": "The number of spaces a tab is equal to.",
"default": 2
},
"printcode.fontSize": {
"type": "integer",
"description": "Controls the font size in pixels.",
"default": 12
},
"printcode.paperSize": {
"type": "string",
"description": "Paper size and orientation.",
"enum": [
"a3",
"a3Land",
"a4",
"a4Land",
"a5",
"a5Land",
"letter",
"letterLand",
"legal",
"legalLand"
],
"default": "a4"
},
"printcode.lineNumbers": {
"type": "string",
"description": "Print line numbers.",
"enum": [
"on",
"off",
"editor"
],
"default": "on"
},
"printcode.useTrueLineNumbers": {
"type": "boolean",
"description": "If printing partial file, don't start count from 1.",
"default": true
},
"printcode.skipBeforeTag": {
"type": "string",
"description": "Tag to separate non-printing part -- skip lines before this.",
"default": "PRINTCODE_SKIPBEFORE"
},
"printcode.skipAfterTag": {
"type": "string",
"description": "Tag to separate non-printing part -- skip lines after this.",
"default": "PRINTCODE_SKIPAFTER"
},
"printcode.printFilePath": {
"type": "string",
"description": "Amount of file's path info in document title.",
"default": "filename",
"enum": [
"none",
"full",
"relative",
"filename"
]
},
"printcode.browserPath": {
"type": "string",
"description": "Path for opening in the specified WebBrowser."
},
"printcode.webServerPort": {
"type": "integer",
"description": "Port number for local WebServer.",
"default": 4649
},
"printcode.disableTelemetry": {
"type": "boolean",
"description": "Dont't include Google Analytics code on page.",
"default": false
},
"printcode.autoPrint": {
"type": "boolean",
"description": "Pop up print dialog automatically.",
"default": true
}
}
}
],
"commands": [
{
"command": "extension.print",
"title": "PrintCode"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^3.0.1",
"vscode": "^1.1.21",
"mocha": "^5.2.0",
"eslint": "^5.4.0",
"@types/node": "^10.7.1",
"@types/mocha": "^5.2.5"
},
"dependencies": {
"codemirror": "^5.39.2",
"vsce": "^1.46.0"
}
}