-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.28 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.28 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
{
"name": "jsonforge",
"version": "0.1.1",
"description": "Visual JSON UI editor for Minecraft: Bedrock Edition.",
"author": "JsonForge Developer Team",
"license": "MIT",
"main": "dist-electron/main.js",
"type": "module",
"scripts": {
"dev": "vite",
"dev:electron": "vite --mode electron",
"build": "tsc -b && vite build",
"build:electron": "tsc -b && vite build --mode electron && electron-builder",
"preview": "vite preview",
"lint": "tsc --noEmit",
"start": "electron ."
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"immer": "^10.1.1",
"lucide-react": "^0.428.0",
"monaco-editor": "^0.50.0",
"discord-rpc": "^4.0.1",
"electron-updater": "^6.3.9",
"nanoid": "^5.0.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-mosaic-component": "^6.1.0",
"zustand": "^4.5.4"
},
"devDependencies": {
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"electron": "^31.2.1",
"electron-builder": "^24.13.3",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vite-plugin-electron": "^0.28.7",
"vite-plugin-electron-renderer": "^0.14.6"
},
"build": {
"appId": "com.jsonforge.jsonforge",
"productName": "JsonForge",
"copyright": "Copyright (C) 2026 JsonForge Developer Team",
"directories": {
"output": "installer",
"buildResources": "build"
},
"asar": true,
"files": [
"dist/**/*",
"dist-electron/**/*",
"package.json"
],
"extraResources": [
{
"from": "build/icons",
"to": "icons",
"filter": ["**/*"]
}
],
"fileAssociations": [
{
"ext": "jfproject",
"name": "JsonForge Project",
"description": "JsonForge bundled UI project",
"role": "Editor"
}
],
"win": {
"target": [
{ "target": "nsis", "arch": ["x64"] },
{ "target": "portable", "arch": ["x64"] }
],
"icon": "build/icons/win/icon.ico",
"publisherName": "JsonForge"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"allowElevation": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "JsonForge",
"menuCategory": "JsonForge",
"uninstallDisplayName": "JsonForge ${version}",
"deleteAppDataOnUninstall": false,
"installerIcon": "build/icons/win/icon.ico",
"uninstallerIcon": "build/icons/win/icon.ico",
"license": "LICENSE"
},
"portable": {
"artifactName": "JsonForge-${version}-portable.exe"
},
"mac": {
"target": ["dmg", "zip"],
"icon": "build/icons/mac/icon.icns",
"category": "public.app-category.developer-tools"
},
"dmg": {
"icon": "build/icons/mac/icon.icns"
},
"linux": {
"target": ["AppImage", "deb"],
"icon": "build/icons/png/64x64.png",
"category": "Development",
"synopsis": "Visual editor for Minecraft Bedrock JSON UI",
"description": "JSON UI editor for Minecraft Bedrock Edition."
},
"publish": {
"provider": "github",
"owner": "jfbedrock",
"repo": "jsonforge",
"releaseType": "release"
}
}
}