-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.39 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.39 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
{
"name": "electron-markdown-editor",
"productName": "ElectronMarkdownEditor",
"version": "3.1.5",
"electronVersion": "40.0.0",
"description": "A markdown editor built with electron, codemirror, and markdown-it",
"keywords": [
"markdown",
"editor",
"electron",
"commonmark",
"markdown-it",
"codemirror"
],
"main": "app.js",
"bin": {
"electron-markdown-editor": "./bin/electron-markdown-editor"
},
"scripts": {
"clean:dist": "rm -rf ./dist ./release",
"start": "electron .",
"start:no-sandbox": "electron . --no-sandbox",
"dev": "vite",
"dev:electron": "VITE_DEV_SERVER_URL=http://localhost:5173 electron .",
"dev:all": "concurrently -k \"vite\" \"VITE_DEV_SERVER_URL=http://localhost:5173 electron .\"",
"build": "vite build",
"preview": "vite preview --host",
"prepublishOnly": "npm run build",
"build:osx": "npm run build && electron-packager . $npm_package_productName --out=release --overwrite --prune --asar --arch=all --platform=darwin --icon=./resources/icon.icns --version=$npm_package_electronVersion --app-version=$npm_package_version",
"build:win": "npm run build && electron-packager . $npm_package_productName --out=release --arch=all --platform=win32 --prune --asar --overwrite --icon=./resources/icon.ico --version=$npm_package_electronVersion --app-version=$npm_package_version",
"build:linux": "npm run build && electron-packager . $npm_package_productName --out=release --arch=x64 --platform=linux --prune --asar --overwrite --icon=./resources/icon.png --version=$npm_package_electronVersion --app-version=$npm_package_version"
},
"repository": {
"type": "git",
"url": "https://github.com/diversen/electron-markdown-editor.git"
},
"files": [
"app.js",
"preload.js",
"bin/",
"dist/",
"resources/",
"package.json",
"README.md"
],
"author": "Dennis Iversen",
"license": "MIT",
"dependencies": {
"@codemirror/lang-markdown": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/theme-one-dark": "^6.0.0",
"codemirror": "^6.0.0",
"electron": "^40.0.0",
"highlight.js": "^11.0.0",
"isbinaryfile": "^6.0.0",
"katex": "^0.16.0",
"markdown-it": "^14.0.0",
"plist": "^3.1.0",
"relative": "^3.0.2"
},
"type": "commonjs",
"devDependencies": {
"concurrently": "^9.0.0",
"vite": "^6.0.0"
},
"engines": {
"node": ">=24.13.0"
}
}