-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcep.config.ts
67 lines (66 loc) · 1.54 KB
/
cep.config.ts
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
import { CEP_Config } from "vite-cep-plugin";
import { version } from "./package.json";
const config: CEP_Config = {
version,
id: "com.checkpoint.cep",
displayName: "Checkpoint",
symlink: "local",
port: 3000,
servePort: 5000,
startingDebugPort: 8860,
extensionManifestVersion: 6.0,
requiredRuntimeVersion: 9.0,
hosts: [{ name: "ILST", version: "[0.0,99.9]" }],
type: "Panel",
iconDarkNormal: "./src/assets/light-icon.png",
iconNormal: "./src/assets/dark-icon.png",
iconDarkNormalRollOver: "./src/assets/light-icon.png",
iconNormalRollOver: "./src/assets/dark-icon.png",
parameters: ["--v=0", "--enable-nodejs", "--mixed-context"],
width: 500,
height: 550,
panels: [
{
mainPath: "./main/index.html",
name: "main",
panelDisplayName: "Checkpoint",
autoVisible: true,
width: 300,
height: 500,
minWidth: 40,
minHeight: 370,
maxWidth: 350,
maxHeight: 700,
},
{
mainPath: "./main/index.html",
name: "settings",
autoVisible: false,
type: "ModalDialog",
width: 800,
height: 650,
minHeight: 600,
minWidth: 600,
maxHeight: 1200,
maxWidth: 1200,
startOnEvents: [],
},
],
build: {
jsxBin: "off",
sourceMap: true,
},
zxp: {
country: "US",
province: "CA",
org: "MyCompany",
password: "mypassword",
tsa: "http://timestamp.digicert.com/",
sourceMap: false,
jsxBin: "off",
},
installModules: ["showdown"],
copyAssets: [],
copyZipAssets: [],
};
export default config;