优化调整辅助线等
This commit is contained in:
+80
-35
@@ -3,49 +3,97 @@
|
||||
"version": "2.3.017",
|
||||
"description": "tools of design soon files",
|
||||
"main": "main.js",
|
||||
"author": "Jerry <jerry@cardsoon.com>",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/cello847/soondesign"
|
||||
},
|
||||
"homepage": "https://soondesign.cardsoon.com",
|
||||
"bugs": {
|
||||
"url": "https://github.com/cello847/soondesign/issues"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "electron-forge start",
|
||||
"package:x64": "electron-forge package --arch=x64",
|
||||
"package:arm64": "electron-forge package --arch=arm64",
|
||||
"package:universal": "electron-forge package --arch=universal"
|
||||
},
|
||||
"start": "electron .",
|
||||
"build": "electron-builder",
|
||||
"build:win": "electron-builder --win --x64",
|
||||
"build:mac": "electron-builder --mac --x64",
|
||||
"build:linux": "electron-builder --linux --x64",
|
||||
"build:all": "electron-builder -mwl"
|
||||
},
|
||||
"build": {
|
||||
"productName": "SoonDesign",
|
||||
"appId": "com.SoonDesign",
|
||||
"copyright": "",
|
||||
"directories": {
|
||||
"output": "build"
|
||||
},
|
||||
"extraFiles": [
|
||||
"lib"
|
||||
],
|
||||
"nsis": {
|
||||
"oneClick": false,
|
||||
"allowElevation": true,
|
||||
"allowToChangeInstallationDirectory": true,
|
||||
"installerIcon": "public/images/favicon.ico",
|
||||
"uninstallerIcon": "public/images/favicon.ico",
|
||||
"installerHeaderIcon": "public/images/favicon.ico",
|
||||
"createDesktopShortcut": true,
|
||||
"createStartMenuShortcut": true
|
||||
},
|
||||
"fileAssociations": [
|
||||
{
|
||||
"name": "SoonDesign file",
|
||||
"ext": "soon",
|
||||
"icon": "public/images/favicon.ico",
|
||||
"description": "SoonDesign file associations"
|
||||
}
|
||||
],
|
||||
"asar": true,
|
||||
"asarUnpack": [
|
||||
"lib/**"
|
||||
],
|
||||
"win": {
|
||||
"icon": "public/images/favicon.ico",
|
||||
"requestedExecutionLevel": "asInvoker",
|
||||
"target": [
|
||||
{
|
||||
"target": "nsis",
|
||||
"arch": [
|
||||
"x64"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"mac": {
|
||||
"target": [
|
||||
{ "target": "dmg", "arch": ["x64"] },
|
||||
{ "target": "zip", "arch": ["x64"] }
|
||||
],
|
||||
"category": "public.app-category.utilities",
|
||||
"icon": "public/images/favicon.icns"
|
||||
},
|
||||
"linux": {
|
||||
"target": [
|
||||
{ "target": "AppImage", "arch": ["x64"] },
|
||||
{ "target": "deb", "arch": ["x64"] }
|
||||
],
|
||||
"category": "Utility",
|
||||
"icon": "public/images/IconA256.png",
|
||||
"desktop": {
|
||||
"Name": "SoonDesign",
|
||||
"Comment": "tools of design soon files"
|
||||
}
|
||||
}
|
||||
},
|
||||
"electronPackagerConfig": {
|
||||
"packageManager": "npm",
|
||||
"icon": "./public/images/favicon.icns"
|
||||
"icon": "./public/images/favicon.ico"
|
||||
},
|
||||
"config": {
|
||||
"forge": {
|
||||
"packagerConfig": {
|
||||
"icon": "./public/images/favicon.icns",
|
||||
"asar": true,
|
||||
"extraResource": [
|
||||
"./help"
|
||||
],
|
||||
"osxUniversal": {
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
"repository": "",
|
||||
"keywords": [
|
||||
"SoonDesign",
|
||||
"soon",
|
||||
"Electron",
|
||||
"quick",
|
||||
"start",
|
||||
"tutorial",
|
||||
"demo"
|
||||
],
|
||||
"author": "",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@electron-forge/cli": "^6.2.0",
|
||||
"electron": "^25.0.0"
|
||||
"electron": "^25.0.0",
|
||||
"electron-builder": "^23.3.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"@electron/remote": "^2.0.8",
|
||||
@@ -58,8 +106,5 @@
|
||||
"less": "^4.1.2",
|
||||
"less-loader": "^10.2.0",
|
||||
"save": "^2.9.0"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"create-dmg": "^6.1.0"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user