-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
244 lines (244 loc) · 9.43 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
{
"name": "adobe-extension-devtools",
"displayName": "Adobe Extension Development Tools",
"description": "provide some useful tools for adobe extension development",
"version": "0.2.9",
"publisher": "YuTengjing",
"icon": "assets/logo.png",
"engines": {
"vscode": "^1.73.1"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/tjx666/adobe-extension-devtools"
},
"keywords": [
"adobe",
"CEP",
"ExtendScript",
"jsx",
"AE",
"AfterEffects",
"Photoshop",
"PS"
],
"activationEvents": [
"onLanguage:javascript",
"onCommand:adobeExtensionDevtools.refreshAeCompositionOutline",
"onCommand:adobeExtensionDevtools.ps.viewLayerInfo",
"onCommand:adobeExtensionDevtools.ps.viewLayerInfoDiff",
"onCommand:adobeExtensionDevtools.ps.viewDocumentInfo",
"onCommand:adobeExtensionDevtools.ps.viewDocumentInfoDiff",
"onCommand:adobeExtensionDevtools.ps.viewApplicationInfo",
"onCommand:adobeExtensionDevtools.ps.viewApplicationInfoDiff",
"onCommand:adobeExtensionDevtools.ps.charIDToTypeID",
"onCommand:adobeExtensionDevtools.ps.charIDToStringID",
"onCommand:adobeExtensionDevtools.ps.stringIDToTypeID",
"onCommand:adobeExtensionDevtools.ps.stringIDToCharID",
"onCommand:adobeExtensionDevtools.ps.typeIDToCharID",
"onCommand:adobeExtensionDevtools.ps.typeIDToStringID",
"onCommand:adobeExtensionDevtools.ps.viewSystemInfo",
"onCommand:adobeExtensionDevtools.ps.viewXMPMetadataXML",
"onCommand:adobeExtensionDevtools.ps.viewXMPMetadata"
],
"main": "./out/main.js",
"contributes": {
"views": {
"explorer": [
{
"id": "aeCompositionOutline",
"name": "AE Composition Outline"
}
]
},
"menus": {
"view/title": [
{
"command": "adobeExtensionDevtools.refreshAeCompositionOutline",
"when": "view == aeCompositionOutline",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "adobeExtensionDevtools.copyPropertyPath",
"when": "view == aeCompositionOutline && viewItem == Property"
},
{
"command": "adobeExtensionDevtools.copyPropertyPath",
"when": "view == aeCompositionOutline && viewItem == PropertyGroup"
},
{
"command": "adobeExtensionDevtools.copyPropertyValue",
"when": "view == aeCompositionOutline && viewItem == JsonValueArray"
},
{
"command": "adobeExtensionDevtools.copyPropertyValue",
"when": "view == aeCompositionOutline && viewItem == JsonValueObject"
},
{
"command": "adobeExtensionDevtools.copyPropertyValue",
"when": "view == aeCompositionOutline && viewItem == JsonValue"
}
]
},
"commands": [
{
"command": "adobeExtensionDevtools.refreshAeCompositionOutline",
"title": "Refresh AE Project Outline",
"icon": "$(extensions-refresh)"
},
{
"command": "adobeExtensionDevtools.copyPropertyPath",
"title": "Adobe Devtools: Copy Property Path"
},
{
"command": "adobeExtensionDevtools.copyPropertyValue",
"title": "Adobe Devtools: Copy Value"
},
{
"command": "adobeExtensionDevtools.ps.viewLayerInfo",
"title": "View Active Layer Descriptor Info"
},
{
"command": "adobeExtensionDevtools.ps.viewLayerInfoDiff",
"title": "View Active Layer Descriptor Info in Diff Editor"
},
{
"command": "adobeExtensionDevtools.ps.viewDocumentInfo",
"title": "View Active Document Descriptor Info"
},
{
"command": "adobeExtensionDevtools.ps.viewDocumentInfoDiff",
"title": "View Active Document Descriptor Info in Diff Editor"
},
{
"command": "adobeExtensionDevtools.ps.viewApplicationInfo",
"title": "View Application Descriptor Info"
},
{
"command": "adobeExtensionDevtools.ps.viewApplicationInfoDiff",
"title": "View Application Descriptor Info in Diff Editor"
},
{
"command": "adobeExtensionDevtools.ps.charIDToTypeID",
"title": "convert char id to type id"
},
{
"command": "adobeExtensionDevtools.ps.charIDToStringID",
"title": "convert char id to string id"
},
{
"command": "adobeExtensionDevtools.ps.stringIDToTypeID",
"title": "convert string id to type id"
},
{
"command": "adobeExtensionDevtools.ps.stringIDToCharID",
"title": "convert string id to char id"
},
{
"command": "adobeExtensionDevtools.ps.typeIDToCharID",
"title": "convert type id to char id"
},
{
"command": "adobeExtensionDevtools.ps.typeIDToStringID",
"title": "convert type id to string id"
},
{
"command": "adobeExtensionDevtools.ps.viewSystemInfo",
"title": "View Photoshop System Info"
},
{
"command": "adobeExtensionDevtools.ps.viewXMPMetadataXML",
"title": "View Active Document XMP Metadata Raw Data XML"
},
{
"command": "adobeExtensionDevtools.ps.viewXMPMetadata",
"title": "View Active Document XMP Metadata"
}
],
"configuration": {
"title": "Adobe Extension Development Tools",
"properties": {
"adobeExtensionDevtools.aeAppPath": {
"type": "string",
"title": "For example: /Applications/Adobe After Effects 2021/Adobe After Effects 2021.app"
},
"adobeExtensionDevtools.aeCompositionOutline.displayedLayerProperties": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"ADBE Transform Group",
"ADBE Audio Group",
"ADBE Effect Parade",
"ADBE Layer Styles",
"ADBE Mask Parade",
"ADBE Text Properties"
]
},
"adobeExtensionDevtools.aeCompositionOutline.excludePropertyPaths": {
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"adobeExtensionDevtools.aeCompositionOutline.showEmptyPropertyGroup": {
"type": "boolean",
"default": false
},
"adobeExtensionDevtools.psAppFolderPath": {
"type": "string",
"title": "For example: /Applications/Adobe Photoshop 2021"
},
"adobeExtensionDevtools.ps.descriptorInfoInsertTimeStr": {
"type": "boolean",
"title": "whether insert time string before descriptor info",
"default": false
},
"adobeExtensionDevtools.ps.includeXMPNamespaces": {
"type": "array",
"title": "which namespaces to show when view xmp metadata",
"items": {
"type": "string"
},
"default": []
}
}
},
"snippets": [
{
"language": "javascript",
"path": "./snippets/javascript.code-snippets"
}
]
},
"scripts": {
"vscode:prepublish": "pnpm run esbuild-base --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild-watch": "pnpm run esbuild-base --sourcemap --watch",
"lint": "eslint src --ext ts",
"package": "pnpm vsce package --no-dependencies",
"publish": "pnpm vsce publish --no-dependencies"
},
"devDependencies": {
"@types/node": "16.11.59",
"@types/vscode": "1.73.1",
"@types/xml2js": "0.4.11",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"esbuild": "0.15.14",
"eslint": "8.27.0",
"eslint-config-prettier": "8.5.0",
"javascript-stringify": "2.1.0",
"prettier": "2.7.1",
"types-for-adobe": "7.0.7",
"typescript": "4.9.3",
"xml2js": "0.4.23"
}
}