-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
135 lines (135 loc) · 4.41 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
{
"name": "file-properties-viewer",
"displayName": "File Properties Viewer",
"description": "Shows file properties like size, various time stamps and media type.",
"version": "1.2.0",
"publisher": "brunnerh",
"license": "MIT",
"icon": "icon/icon.png",
"homepage": "https://github.com/brunnerh/file-properties-viewer",
"repository": {
"type": "git",
"url": "https://github.com/brunnerh/file-properties-viewer.git"
},
"engines": {
"vscode": "^1.87.0"
},
"categories": [
"Other"
],
"keywords": [
"file",
"properties",
"size",
"date",
"media info",
"mime",
"creation date",
"modification date",
"access date"
],
"activationEvents": [],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "filePropertiesViewer.viewProperties",
"title": "View File Properties"
}
],
"configuration": {
"type": "object",
"title": "File Properties Viewer Configuration",
"properties": {
"filePropertiesViewer.sizeMode": {
"type": "string",
"enum": [
"kibi",
"kilo"
],
"default": "kilo",
"description": "Whether to show file sizes in kibi (factor 1024) or kilo (factor 1000)."
},
"filePropertiesViewer.dateTimeFormat": {
"type": [
"string",
"null"
],
"default": null,
"description": "Sets a custom date/time format. See https://www.npmjs.com/package/dateformat#mask-options for the available mask options. If null the default locale string conversion is used."
},
"filePropertiesViewer.queryMediaInfo": {
"type": "boolean",
"default": true,
"description": "Whether media information via mediainfo should be requested."
},
"filePropertiesViewer.outputStylePath": {
"type": [
"string",
"null"
],
"default": null,
"description": "Sets a path to a CSS file used for styling the output table. See extension page for more info."
},
"filePropertiesViewer.disableRelativeTimestamps": {
"type": "boolean",
"default": false,
"description": "Turns off relative timestamp display."
}
}
},
"menus": {
"commandPalette": [
{
"command": "filePropertiesViewer.viewProperties"
}
],
"editor/title/context": [
{
"command": "filePropertiesViewer.viewProperties"
}
],
"explorer/context": [
{
"command": "filePropertiesViewer.viewProperties"
}
]
},
"views": {
"explorer": [
{
"type": "webview",
"id": "filePropertiesViewer.view",
"name": "Properties",
"contextualTitle": "File Properties Viewer",
"icon": "images/view-icon.min.svg"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "vite build",
"watch": "vite build --watch",
"test": "npm run compile && vscode-test",
"minify:images": "pushd images; ./minify.sh; popd"
},
"devDependencies": {
"@types/dateformat": "^5.0.2",
"@types/mime": "^3.0.4",
"@types/mocha": "^9.1.0",
"@types/node": "^18",
"@types/vscode": "^1.75.0",
"@types/xml2js": "^0.4.2",
"@vscode/test-cli": "^0.0.8",
"@vscode/test-electron": "^2.3.9",
"dateformat": "5.0.3",
"mime": "^4.0.1",
"mocha": "10.3.0",
"svgo": "^2.8.0",
"typescript": "5",
"vite": "^5.1.7",
"xml2js": "^0.6.2"
},
"dependencies": {}
}