-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.24 KB
/
package.json
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
{
"name": "ame",
"productName": "A.M.E",
"version": "1.0.0",
"description": "Another Markdown Editor or AME",
"main": "main.js",
"scripts": {
"clean": "rm -rf ./node_modules ./dist",
"start": "./node_modules/.bin/electron .",
"package": "npm-run-all package:*",
"package:mac": "electron-packager . --overwrite --platform=darwin --arch=x64 --prune=true --out=dist --icon=src/icon/app",
"package:win": "electron-packager . --overwrite --asar=true --platform=win32 --arch=ia32 --prune=true --out=dist --icon=src/icon/app",
"package:linux": "electron-packager . --overwrite --platform=linux --arch=x64 --prune=true --out=dist --icon=src/icon/app"
},
"repository": {
"type": "git",
"url": "git+https://github.com/naseberry/another-markdown-editor.git"
},
"keywords": [
"Markdown",
"Electron",
"SimpleMDE"
],
"author": {
"name": "Peter Hunt",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/naseberry/another-markdown-editor/issues"
},
"homepage": "https://github.com/naseberry/another-markdown-editor#readme",
"devDependencies": {
"electron": "^18.0.4",
"electron-packager": "^15.1.0",
"npm-run-all": "^4.1.3"
}
}