-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.51 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.51 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
{
"name": "xbrowse",
"productName": "xBrowse",
"version": "1.0.0-pre2",
"description": "new",
"author": "PreknowledgeX",
"homepage": "https://x.preknowledge.in",
"keywords": [
"electron",
"browser",
"navigation",
"tab",
"addressbar"
],
"main": "src/main/main.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/"
},
"scripts": {
"start:control": "npx babel src/react_src --out-dir src/main/renderer/js",
"start": "electron src/main/main.js --enable-transparent-visuals",
"runjs": "nodemon devLib/start.js --watch src/control.jsx",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"before:commit": "del dataSetup.json && git add ."
},
"build": {
"appId": "p.x.browse",
"nsis": {
"include": "src/installer.nsh"
},
"mac": {
"category": "public.app-category.utilities",
"icon": "src/icons/icon.icns"
},
"win": {
"asar": true,
"target": "nsis",
"icon": "src/icons/icon.ico"
},
"linux": {
"category": "Network",
"maintainer": "Px Team <preknowledge@gmail.com>",
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "deb",
"arch": [
"x64"
]
}
]
},
"fileAssociations": [
{
"name": "Document",
"description": "xBrowse",
"role": "Viewer",
"ext": "html"
},
{
"name": "XExtension",
"description": "xBrowse",
"role": "Viewer",
"ext": "xext"
}
]
},
"dependencies": {
"axios": "^1.4.0",
"classnames": "^2.2.6",
"data-store": "^4.0.3",
"electron-is-dev": "^2.0.0",
"electron-log": "^3.0.7",
"electron-window-state": "^5.0.3",
"file-url": "^2.0.2",
"jquery": "^3.6.0",
"nodescriptencryption": "^1.0.4",
"react": "^16.8.6",
"react-desktop": "^0.3.9",
"react-dom": "^16.8.6",
"request": "^2.88.2",
"request-progress": "^3.0.0",
"socket.io": "^4.4.1"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@chakra-ui/babel-plugin": "^1.0.2",
"cli-color": "^2.0.1",
"electron": "^24.1.3",
"electron-builder": "^22.14.13",
"nodemon": "^2.0.15"
}
}