-
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) · 3.41 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.41 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": "catalyst",
"version": "4.0.0",
"description": "A minimal Electron Web Browser",
"main": "build/main/index.js",
"private": true,
"scripts": {
"lint": "eslint src",
"build": "node ./bundle.js",
"start": "npm run build && electron .",
"watch": "node ./bundle.js --watch",
"dist": "npm run build && electron-builder -mwl",
"dist:win": "npm run build && electron-builder -w",
"dist:mac": "npm run build && electron-builder -m",
"dist:linux": "npm run build && electron-builder -l"
},
"repository": "https://github.com/JaydenDev/Catalyst",
"keywords": [
"Electron",
"Browser",
"Internet"
],
"author": "JaydenDev",
"license": "MIT",
"dependencies": {
"classnames": "^2.3.2",
"events": "^3.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typed-emitter": "^2.1.0"
},
"devDependencies": {
"@types/events": "^3.0.0",
"@types/node": "^18.11.2",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"concurrently": "^7.4.0",
"esbuild": "^0.15.12",
"esbuild-sass-plugin": "^2.3.3",
"eslint": "^8.35.0",
"typescript": "^4.8.4",
"electron": "^21.2.0",
"electron-builder": "^23.6.0"
},
"build": {
"files": [
"build/**"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
]
},
"linux": {
"category": "Network",
"maintainer": "JaydenDev",
"target": [
{
"target": "appimage",
"arch": [
"x64",
"arm64"
]
},
{
"target": "deb",
"arch": [
"x64",
"arm64"
]
},
{
"target": "rpm",
"arch": [
"x64",
"arm64"
]
}
]
},
"mac": {
"category": "public.app-category.productivity",
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
]
},
"nsis": {
"artifactName": "CatalystSetup-Win.${ext}"
},
"portable": {
"artifactName": "CatalystPortable-Win.${ext}"
},
"deb": {
"artifactName": "Catalyst-Linux-${arch}.${ext}"
},
"appImage": {
"artifactName": "Catalyst-Linux-${arch}.${ext}"
},
"rpm": {
"artifactName": "Catalyst-Linux-${arch}.${ext}"
},
"dmg": {
"artifactName": "Catalyst-Max-${arch}.${ext}"
}
}
}