-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.04 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.04 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
70
71
{
"name": "mdne",
"version": "0.3.0",
"private": false,
"description": "MDNE - Markdown Neo Edit. A simple markdown and code editor powered by Markdown-it, Ace and Carlo.",
"keywords": [
"Markdown",
"Editor",
"markdown-it",
"Ace",
"PDF",
"Lisp",
"LSX",
"Ménneu",
"Liyad",
"Carlo",
"puppeteer"
],
"main": "index.mjs",
"module": "index.mjs",
"engines": {
"node": ">=10.0"
},
"bin": {
"mdne": "index.js"
},
"dependencies": {
"carlo": "https://github.com/shellyln/carlo.git#f284639624e24c0d60e4c6134e44ba6fc1f0fcb9",
"liyad": "^0.6.0",
"menneu": "^0.5.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"red-agate": "^0.5.0",
"red-agate-util": "^0.5.0"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@open-wc/webpack-import-meta-loader": "^0.4.7",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^7.15.0",
"npm-run-all": "^4.1.5",
"raw-loader": "^4.0.2",
"source-map-loader": "^1.1.3",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0"
},
"scripts": {
"build": "run-s build:prod",
"build:prod": "cross-env NODE_ENV=production webpack-cli --mode=production --config webpack.config.js",
"build:dev": "webpack-cli --mode=development --config webpack.config.js",
"manifest": "node scripts/make-precache-manifest.js",
"clean": "rm -rf ./contents/out/preview.* ./bin",
"test": "echo \"no test specified\"",
"lint": "eslint index.js lib/**/*.js lib/**/*.mjs contents/assets/script/**/*.js",
"start": "node --experimental-modules --no-warnings index.js",
"start-c": "env MDNE_CHROME_CHANNEL_CHROMIUM=true node index.js",
"version": "node index.js --app-version",
"prepublishOnly": "run-s clean lint build test"
},
"repository": {
"type": "git",
"url": "https://github.com/shellyln/mdne.git"
},
"author": "shellyln",
"homepage": "https://shellyln.github.io/",
"license": "ISC"
}