-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 2.96 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 2.96 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
126
127
{
"name": "codedroid",
"version": "4.0.0",
"description": "AI-native desktop IDE \u2014 open source",
"main": "electron/main.js",
"author": "Ramzan Khan",
"license": "MIT",
"scripts": {
"dev": "concurrently -k \"vite\" \"wait-on http://localhost:5173 && cross-env NODE_ENV=development electron .\"",
"build": "vite build",
"typecheck": "tsc --noEmit",
"rebuild": "electron-rebuild -f -w node-pty",
"dist:win": "npm run build && electron-builder --win",
"dist:mac": "npm run build && electron-builder --mac",
"dist:linux": "npm run build && electron-builder --linux",
"dist": "npm run build && electron-builder --win --mac --linux"
},
"build": {
"appId": "com.codedroid.app",
"productName": "CodeDroid",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*",
"python/**/*",
"node_modules/**/*",
"package.json"
],
"extraResources": [
{
"from": "python",
"to": "python",
"filter": [
"**/*"
]
}
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "assets/icon.ico"
},
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
],
"icon": "assets/icon.icns",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "assets/entitlements.mac.plist",
"entitlementsInherit": "assets/entitlements.mac.plist"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "deb",
"arch": [
"x64"
]
}
],
"icon": "assets/icon.png",
"category": "Development"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"publish": {
"provider": "github",
"owner": "khandev1211-cpu",
"repo": "CodeDroid"
}
},
"dependencies": {
"@monaco-editor/react": "4.6.0",
"@xterm/addon-fit": "0.10.0",
"@xterm/addon-web-links": "0.11.0",
"@xterm/xterm": "5.5.0",
"clsx": "2.1.0",
"electron-store": "8.1.0",
"electron-updater": "^6.3.0",
"lucide-react": "0.344.0",
"monaco-editor": "0.45.0",
"node-pty": "^1.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"zustand": "4.5.0",
"yjs": "^13.6.18",
"y-webrtc": "^10.2.5",
"y-monaco": "^0.1.5",
"lib0": "^0.2.93"
},
"devDependencies": {
"@electron/rebuild": "^3.6.0",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.0",
"@vitejs/plugin-react": "4.2.0",
"concurrently": "8.2.0",
"cross-env": "7.0.3",
"electron": "29.4.6",
"electron-builder": "^24.13.0",
"typescript": "5.3.3",
"vite": "5.1.6",
"wait-on": "7.2.0"
}
}