-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.85 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
{
"name": "java-runs",
"version": "1.0.0",
"description": "JLaunch — 轻量的 Java 项目运行、调试与进程管理桌面应用",
"main": "electron/main.js",
"author": "LearnAIHubC",
"license": "MIT",
"private": true,
"homepage": "https://github.com/LearnAIHubC/JLaunch#readme",
"repository": {
"type": "git",
"url": "https://github.com/LearnAIHubC/JLaunch.git"
},
"bugs": {
"url": "https://github.com/LearnAIHubC/JLaunch/issues"
},
"keywords": [
"electron",
"java",
"spring-boot",
"tomcat",
"maven",
"debugger",
"process-manager"
],
"type": "commonjs",
"scripts": {
"start": "electron .",
"dev": "electron .",
"test": "node --test tests/*.test.js",
"lint": "eslint .",
"check": "npm run lint && npm test",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"dependencies": {},
"devDependencies": {
"@eslint/js": "9.39.2",
"electron": "43.1.1",
"electron-builder": "26.15.3",
"eslint": "9.39.2",
"globals": "16.4.0"
},
"build": {
"appId": "com.learnaihub.jlaunch",
"productName": "JLaunch",
"asar": true,
"files": [
"electron/**/*",
"src/**/*",
"package.json",
"LICENSE"
],
"directories": {
"output": "release",
"buildResources": "build"
},
"electronLanguages": ["zh-CN", "en-US"],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "build/icon.icns",
"target": ["dmg", "zip"]
},
"win": {
"icon": "build/icon.ico",
"target": ["nsis", "portable"]
},
"linux": {
"category": "Development",
"icon": "build/icon.png",
"target": ["AppImage", "deb"]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"engines": {
"node": ">=22"
}
}