-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.38 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.38 KB
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
{
"name": "pair-view-sync",
"displayName": "PairView Sync",
"description": "Automatically pairs media files (images, videos) with their matching data files (txt, json, csv, xml, yaml) in split panes. Fully configurable.",
"version": "1.0.0",
"publisher": "agoulddesign",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/agoulddesign/pairview-sync"
},
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Other"
],
"keywords": [
"image",
"video",
"sync",
"split pane",
"caption",
"annotation",
"pair"
],
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"configuration": {
"title": "PairView Sync",
"properties": {
"pairView.enableSync": {
"type": "boolean",
"default": true,
"description": "Enable or disable PairView bidirectional synchronization."
},
"pairView.mediaExtensions": {
"type": "array",
"items": {
"type": "string"
},
"default": [
".png",
".jpg",
".jpeg",
".webp",
".bmp",
".gif",
".svg",
".tiff",
".tif",
".ico",
".mp4",
".avi",
".mov",
".mkv",
".wmv",
".webm",
".flv",
".m4v",
".3gp"
],
"description": "File extensions treated as media (images & videos). Order determines lookup priority."
},
"pairView.dataExtensions": {
"type": "array",
"items": {
"type": "string"
},
"default": [
".txt",
".json",
".csv",
".xml",
".yaml",
".yml"
],
"description": "File extensions treated as data/text. Order determines lookup priority when searching for a match."
}
}
},
"commands": [
{
"command": "pairView.toggleSync",
"title": "PairView: Toggle Sync"
}
]
},
"main": "./extension.js",
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "npx @vscode/vsce package"
},
"devDependencies": {
"@types/node": "^16.18.0",
"@types/vscode": "^1.75.0",
"typescript": "^4.9.5"
}
}