Initial commit: MarkLite Markdown Reader
This commit is contained in:
@@ -0,0 +1,67 @@
|
||||
{
|
||||
"name": "marklite",
|
||||
"version": "1.0.0",
|
||||
"description": "Lightweight Markdown Reader for Windows",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
"start": "electron .",
|
||||
"build": "electron-builder --win",
|
||||
"build:portable": "electron-builder --win portable"
|
||||
},
|
||||
"author": "MarkLite",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"electron": "^28.0.0",
|
||||
"electron-builder": "^24.9.1"
|
||||
},
|
||||
"build": {
|
||||
"appId": "com.marklite.app",
|
||||
"productName": "MarkLite",
|
||||
"directories": {
|
||||
"output": "dist"
|
||||
},
|
||||
"files": [
|
||||
"main.js",
|
||||
"preload.js",
|
||||
"renderer/**/*",
|
||||
"lib/**/*",
|
||||
"assets/**/*"
|
||||
],
|
||||
"win": {
|
||||
"target": [
|
||||
{
|
||||
"target": "nsis",
|
||||
"arch": ["x64"]
|
||||
}
|
||||
],
|
||||
"icon": "assets/icon.ico"
|
||||
},
|
||||
"nsis": {
|
||||
"oneClick": false,
|
||||
"allowToChangeInstallationDirectory": true,
|
||||
"createDesktopShortcut": true,
|
||||
"createStartMenuShortcut": true,
|
||||
"shortcutName": "MarkLite"
|
||||
},
|
||||
"fileAssociations": [
|
||||
{
|
||||
"ext": "md",
|
||||
"name": "Markdown",
|
||||
"description": "Markdown File",
|
||||
"icon": "assets/icon.ico"
|
||||
},
|
||||
{
|
||||
"ext": "markdown",
|
||||
"name": "Markdown",
|
||||
"description": "Markdown File",
|
||||
"icon": "assets/icon.ico"
|
||||
},
|
||||
{
|
||||
"ext": "txt",
|
||||
"name": "Text",
|
||||
"description": "Text File",
|
||||
"icon": "assets/icon.ico"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user