first commit
This commit is contained in:
86
dist/package.json
vendored
Normal file
86
dist/package.json
vendored
Normal file
@@ -0,0 +1,86 @@
|
||||
{
|
||||
"name": "Note",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "App.js",
|
||||
"scripts": {
|
||||
"dev": "concurrently \"gulp\" \"tsc -w\" ",
|
||||
"el": "electron .",
|
||||
"mac": "electron-builder --mac --x64",
|
||||
"win": "electron-builder --win"
|
||||
},
|
||||
"build": {
|
||||
"appId": "com.electron.${name}",
|
||||
"productName":"PugToHtml",
|
||||
"copyright":"Copyright © 2019 ${author}",
|
||||
"publish": [
|
||||
{
|
||||
"provider": "generic",
|
||||
"url": "http://127.0.0.1:5500/"
|
||||
}
|
||||
],
|
||||
"directories": {
|
||||
"buildResources": "./",
|
||||
"output": "../build"
|
||||
},
|
||||
"dmg": {
|
||||
"contents": [
|
||||
{
|
||||
"x": 410,
|
||||
"y": 150,
|
||||
"type": "link",
|
||||
"path": "/Applications"
|
||||
},
|
||||
{
|
||||
"x": 130,
|
||||
"y": 150,
|
||||
"type": "file"
|
||||
}
|
||||
]
|
||||
},
|
||||
"pkg": {
|
||||
"installLocation": "/Applications",
|
||||
"license": "license.txt",
|
||||
"welcome": "welcome.txt"
|
||||
},
|
||||
"mac": {
|
||||
"hardenedRuntime" : true,
|
||||
"gatekeeperAssess": false,
|
||||
"target": ["dmg","7z"],
|
||||
"icon": "icon.icns"
|
||||
},
|
||||
"win": {
|
||||
"icon": "pic.ico",
|
||||
"target": ["7z"]
|
||||
}
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"_moduleAliases": {
|
||||
"@" : "dist",
|
||||
"@type": "dist/core/types",
|
||||
"@run" : "dist/core/run",
|
||||
"@controller" : "dist/core/controller",
|
||||
"@utils" : "dist/core/utils",
|
||||
"@config" : "dist/core/config",
|
||||
"@model" : "dist/core/model",
|
||||
"@ipc" : "dist/core/ipc",
|
||||
"@net" : "dist/core/net",
|
||||
"@annotation" : "dist/core/annotation",
|
||||
"@interactive" : "dist/core/interactive",
|
||||
"@img" : "dist/view/assets/img"
|
||||
},
|
||||
"devDependencies": {
|
||||
"electron": "^9.0.5"
|
||||
},
|
||||
"dependencies": {
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-jade": "^1.1.0",
|
||||
"gulp-plumber": "^1.2.1",
|
||||
"gulp-watch": "^5.0.1",
|
||||
"gulp-watch-path": "^0.1.0",
|
||||
"module-alias": "^2.2.2",
|
||||
"tslib": "^2.0.0"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user