-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.08 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
{
"name": "bdcode",
"private": true,
"version": "1.0.0",
"type": "module",
"main": "electron.cjs",
"author": "Bangladesh Code",
"description": "Bangladesh Code — বাংলাদেশ সরকার কোড সম্পাদক",
"scripts": {
"dev": "vite",
"desktop": "node run-dev.js",
"build": "tsc && vite build",
"lint": "tsc",
"preview": "vite preview",
"build:win": "vite build && electron-builder --win",
"build:mac": "vite build && electron-builder --mac",
"build:linux": "vite build && electron-builder --linux"
},
"build": {
"appId": "io.bdcode.app",
"productName": "Bangladesh Code",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron.cjs",
"preload.cjs"
],
"npmRebuild": false,
"publish": {
"provider": "github",
"owner": "beingniloy",
"repo": "bdcode"
},
"win": {
"target": "nsis",
"icon": "public/images/logo.ico"
},
"mac": {
"target": "dmg",
"icon": "public/images/logo.png"
},
"linux": {
"target": "AppImage",
"icon": "public/images/logo.png"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true,
"installerIcon": "public/images/logo.ico",
"uninstallerIcon": "public/images/logo.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Bangladesh Code"
}
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"electron-updater": "^6.3.9",
"jszip": "^3.10.1",
"lucide-react": "^0.469.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"optionalDependencies": {
"node-pty": "^1.1.0"
},
"devDependencies": {
"@types/jszip": "^3.4.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"electron": "^34.0.2",
"electron-builder": "^25.1.8",
"typescript": "^5.6.3",
"vite": "^5.4.10"
}
}