-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 2.16 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
{
"name": "cepgen",
"version": "1.0.3",
"description": "Generate a CEP manifest and debug file",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"cepgen": "index.js"
},
"keywords": [
"cep",
"manifest",
"adobe",
"script"
],
"author": "Remco Janssen",
"license": "MIT",
"dependencies": {
"fs-extra": "^9.0.1",
"jsonschema": "^1.4.0",
"minimist": "^1.2.5",
"xml-formatter": "^2.4.0"
},
"cep": {
"version": "6.0",
"bundle": {
"name": "My Bundle",
"id": "com.mycompany",
"version": "1.0.0"
},
"hosts": {
"AEFT": "16.0",
"PPRO": "1.0",
"PHXS": "1.0",
"PHSP": "0.0"
},
"extensions": [
{
"menu": "My Panel",
"type": "ModalDialog",
"version": "1.0.0",
"main": "./index.html",
"script": "./script.jsx",
"id": "com.mycompany.panel",
"debug": {
"AEFT": 3001,
"PPRO": 3001,
"PHXS": 3001,
"PHSP": 3001
},
"geometry": {
"size": {
"width": 20,
"height": 20
},
"min": {
"width": 800,
"height": 500
},
"maxsize": {
"width": 800,
"height": 500
}
},
"icons": {
"Normal": "./icons/icon.png",
"Rollover": "./icons/icon.png",
"Disabled": "./icons/icon.png",
"DarkrollOver": "./icons/icon.png"
},
"events": [
"com.lifecycle.event"
],
"params": [
"--allow-file-access-from-files",
"--allow-file-access",
"--enable-nodejs",
"--mixed-context"
]
},
{
"type": "Custom",
"version": "1.0.0",
"main": "./index.html",
"id": "com.mycompany.custom",
"debug": {
"AEFT": 3001,
"PPRO": 3001,
"PHXS": 3001,
"PHSP": 3001
},
"geometry": {
"size": {
"width": 800,
"height": 500
}
},
"icons": {
"Normal": "./icons/icon.png",
"Rollover": "./icons/icon.png",
"darknormal": "./icons/icon.png",
"DarkrollOver": "./icons/icon.png"
},
"events": [
"com.lifecycle.event"
],
"params": [
"--allow-file-access-from-files",
"--allow-file-access",
"--enable-nodejs",
"--mixed-context"
]
}
]
}
}