This repository was archived by the owner on Oct 9, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.07 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.07 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
{
"name": "incogine-editor-oss",
"description": "A multipurpose code editor",
"version": "0.1.4",
"private": true,
"author": "leafstudiosDot",
"copyright": "© 2023 leafstudiosDot",
"main": "./public/electron.js",
"homepage": ".",
"dependencies": {
"@electron/remote": "^2.0.8",
"@tauri-apps/api": "^1.0.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "12.1.5",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.3",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"axios": "^1.1.3",
"electron-is-dev": "^2.0.0",
"electron-store": "^8.1.0",
"fs-jetpack": "^4.3.1",
"jquery": "^3.6.0",
"path": "^0.12.7",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-pdf": "4.2.0",
"react-scripts": "4.0.3",
"typescript": "^4.7.4",
"update-electron-app": "^2.0.1",
"web-vitals": "^2.1.4",
"webpack": "4.44.2"
},
"scripts": {
"start": "react-app-rewired --openssl-legacy-provider start",
"build": "react-app-rewired --openssl-legacy-provider build",
"test": "react-app-rewired --openssl-legacy-provider test",
"eject": "react-scripts --openssl-legacy-provider eject",
"start-electron": "electron ./public/electron.js",
"build-electron": "electron-builder -wl",
"build-electron-mac": "electron-builder -m --universal",
"build-electron-cl": "electron-builder -wl --publish=never",
"build-electron-mac-cl": "electron-builder -m --universal --publish=never",
"start-tauri": "tauri dev",
"build-tauri": "tauri build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@tauri-apps/cli": "^1.0.2",
"concurrently": "^7.2.2",
"electron": "^19.0.8",
"electron-builder": "^23.1.0",
"react-app-rewired": "^2.2.1",
"react-error-overlay": "^6.0.10",
"wait-on": "^6.0.1"
},
"build": {
"appId": "com.leafstudiosdot.incogine.editor",
"productName": "Incogine Editor",
"copyright": "© 2023 leafstudiosDot",
"win": {
"icon": "./electron/icons/icon.ico",
"publisherName": "leafstudiosDot"
},
"mac": {
"category": "public.app-category.developer-tools",
"target": "dmg",
"icon": "./electron/icons/icon.icns",
"type": "development",
"mergeASARs": true,
"darkModeSupport": true,
"defaultArch": "universal"
},
"dmg": {
"backgroundColor": "#8a8a8a",
"icon": "./electron/icons/icon.icns",
"title": "Incogine Editor - A Multipurpose Code Editor"
},
"linux": {
"target": [
"AppImage",
"deb",
"freebsd",
"snap"
],
"maintainer": "leafstudiosDot",
"vendor": "leafstudiosDot",
"icon": "./electron/icons/icon.png",
"category": "Development"
}
}
}