-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.95 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "mdne-electron",
"version": "0.3.16",
"private": false,
"description": "Markdown Neo Edit for Electron - A simple markdown and code editor powered by Markdown-it, Ace and Electron.",
"keywords": [
"Markdown",
"Editor",
"markdown-it",
"Ace",
"PDF",
"Lisp",
"LSX",
"Ménneu",
"Liyad",
"Electron",
"puppeteer"
],
"scripts": {
"start": "electron .",
"dist:unpacked": "run-s dist:clean dist:unpacked:1",
"dist:unpacked:1": "electron-builder --dir -c electron-builder.yml",
"dist:win": "run-s dist:clean dist:win:1",
"dist:win:1": "electron-builder -c electron-builder.yml --x64 --win",
"dist:linux": "run-s dist:clean dist:linux:1",
"dist:linux:1": "electron-builder -c electron-builder.yml --x64 --linux",
"dist:mac": "run-s dist:clean dist:mac:1",
"dist:mac:1": "electron-builder -c electron-builder.yml --x64 --mac",
"dist": "run-s dist:clean dist:1",
"dist:clean": "rm -f ./contents/out/preview.* && touch ./contents/out/preview.html ./contents/out/preview.pdf",
"dist:1": "electron-builder -c electron-builder.yml",
"build": "run-s build:prod",
"build:dev": "run-s build:mainproc:dev build:cp:contents build:cp:renderer build:renderer:dev",
"build:prod": "run-s build:mainproc:prod build:cp:contents build:cp:renderer build:renderer:prod",
"build:browser": "run-s build:browser:prod",
"build:browser:dev": "run-s build:cp:contents build:cp:browser build:renderer:dev build:browser:manifest",
"build:browser:prod": "run-s build:cp:contents build:cp:browser build:renderer:prod build:browser:manifest",
"build:browser:manifest": "node build-scripts/make-precache-manifest.js",
"build:cp:contents": "cp -R src.contents/. contents",
"build:cp:renderer": "cp src.renderer/*.html contents/.",
"build:cp:browser": "cp -R src.browser/. contents",
"build:mainproc": "run-s build:mainproc:prod",
"build:mainproc:dev": "webpack-cli --mode=development --config webpack.mainproc.config.js",
"build:mainproc:prod": "cross-env NODE_ENV=production webpack-cli --mode=production --config webpack.mainproc.config.js",
"build:renderer": "run-s build:renderer:prod",
"build:renderer:dev": "webpack-cli --mode=development --config webpack.renderer.config.js",
"build:renderer:prod": "cross-env NODE_ENV=production webpack-cli --mode=production --config webpack.renderer.config.js",
"clean": "rm -rf ./dist && rm -rf ./bin && rm -rf ./contents && rm -rf ./dist.electron",
"lint": "run-s lint:mainproc lint:preload lint:renderer",
"lint:mainproc": "eslint --ext .js,.ts ./src.mainproc/",
"lint:preload": "eslint --ext .js,.ts ./src.preload/",
"lint:renderer": "eslint --ext .js ./src.renderer/assets/script/",
"test": "echo test",
"prepublishOnly": "run-s clean build test lint"
},
"dependencies": {
"puppeteer-core": "^5.5.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@types/node": "^14.14.17",
"@types/puppeteer-core": "^5.4.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"bufferutil": "^4.0.2",
"cross-env": "^7.0.3",
"electron": "^11.1.1",
"electron-builder": "^22.9.1",
"eslint": "^7.16.0",
"liyad": "^0.6.0",
"menneu": "^0.5.2",
"node-sass": "^5.0.0",
"npm-run-all": "^4.1.5",
"raw-loader": "^4.0.2",
"red-agate": "^0.5.0",
"sass-loader": "^10.1.0",
"source-map-loader": "^2.0.0",
"ts-loader": "^8.0.13",
"typescript": "^4.1.3",
"utf-8-validate": "^5.0.3",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/shellyln/mdne-electron.git"
},
"author": {
"name": "shellyln",
"email": "shellyln@users.noreply.github.com"
},
"homepage": "https://shellyln.github.io/",
"license": "ISC"
}