-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.02 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 4.02 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "redexcompile",
"version": "0.3.0",
"description": "A crimson cross-platform IDE with RedEX tooling, AI assistance, live collaboration, dependency discovery, and phone-to-PC development",
"main": "electron/main.cjs",
"type": "module",
"author": { "name": "RedX Development", "email": "redxdevelopment1998@gmail.com" },
"homepage": "https://github.com/RedXDevelopment/RedEXCompile",
"bugs": { "url": "https://github.com/RedXDevelopment/RedEXCompile/issues" },
"repository": { "type": "git", "url": "https://github.com/RedXDevelopment/RedEXCompile.git" },
"desktopName": "redexcompile",
"license": "UNLICENSED",
"bin": {
"redex": "tools/redex-cli.cjs"
},
"scripts": {
"dev": "concurrently -k \"vite --host 127.0.0.1\" \"wait-on http://127.0.0.1:5173 && electron .\"",
"build": "vite build",
"preview": "vite preview",
"check": "node tools/project-check.cjs && node tools/validate-plugin-registry.cjs",
"test": "node --test tests/*.test.cjs",
"dist": "npm run build && electron-builder",
"dist:win": "npm run build && electron-builder --win nsis portable --publish never",
"dist:installer": "npm run build && electron-builder --win nsis --publish never",
"dist:mac": "npm run build && electron-builder --mac dmg zip --publish never",
"dist:linux": "npm run build && electron-builder --linux AppImage deb --publish never"
},
"dependencies": {
"@github/copilot-sdk": "^1.0.6",
"electron-updater": "^6.8.9",
"monaco-editor": "^0.52.2",
"ws": "^8.18.3"
},
"devDependencies": {
"concurrently": "^9.2.0",
"electron": "^37.2.3",
"electron-builder": "^26.0.12",
"vite": "^7.0.5",
"wait-on": "^8.0.4"
},
"build": {
"appId": "com.redxdevelopment.redexcompile",
"productName": "RedEXCompile",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*",
"mobile/**/*",
"shared/**/*",
"tools/**/*",
"templates/**/*",
"docs/**/*",
"plugins/**/*",
"build/**/*",
"package.json",
"README.md",
"TERMS.md",
"PRIVACY.md",
"LICENSE"
],
"asar": true,
"afterPack": "tools/after-pack.cjs",
"compression": "maximum",
"electronLanguages": ["en-US"],
"publish": [{ "provider": "github", "owner": "RedXDevelopment", "repo": "RedEXCompile" }],
"asarUnpack": [
"node_modules/@github/copilot*/**/*"
],
"win": {
"icon": "build/icon.png",
"target": [
"nsis",
"portable"
],
"artifactName": "RedEXCompile-${version}-${arch}.${ext}"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"runAfterFinish": true,
"include": "build/installer.nsh",
"artifactName": "RedEXCompile-Setup-${version}-${arch}.${ext}"
},
"portable": {
"artifactName": "RedEXCompile-Portable-${version}-${arch}.${ext}"
},
"mac": {
"icon": "build/icon.png",
"category": "public.app-category.developer-tools",
"target": ["dmg", "zip"],
"artifactName": "RedEXCompile-${version}-macOS-${arch}.${ext}"
},
"dmg": {
"title": "RedEXCompile ${version}",
"artifactName": "RedEXCompile-Setup-${version}-macOS-${arch}.${ext}"
},
"linux": {
"icon": "build/icon.png",
"category": "Development",
"target": ["AppImage", "deb"],
"artifactName": "RedEXCompile-${version}-Linux-${arch}.${ext}",
"synopsis": "RedEXCompile cross-platform IDE",
"maintainer": "RedX Development <redxdevelopment1998@gmail.com>",
"syncDesktopName": true
},
"fileAssociations": [
{
"ext": "RedEX",
"name": "RedEX Source File",
"description": "RedEX programming language source",
"role": "Editor"
},
{
"ext": "RedEXP",
"name": "RedEXCompile Plugin",
"description": "RedEXCompile declarative plugin package",
"role": "Editor"
}
]
}
}