-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"name": "@centigrade/electron-markdown-view",
"version": "1.0.1",
"description": "Offers an out-of-the-box window solution in electron to display static markdown files.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"tsc": "tsc",
"build": "tsc && node build-html.js src/markdown-view/index.html lib/markdown-view/index.html && npx babel lib/index.js --out-file lib/index.js && shx rm -r lib/markdown-view"
},
"author": {
"name": "Centigrade GmbH",
"url": "https://www.centigrade.de/en/"
},
"contributors": [
{
"name": "Marc Schubhan"
}
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"babel-loader": "^8.2.2",
"babel-plugin-transform-html-import-require-to-string": "^0.0.3",
"babel-preset-minify": "^0.5.1",
"shx": "^0.3.3",
"typescript": "^4.2.3"
},
"dependencies": {
"electron": "^12.0.0",
"showdown": "^1.9.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Centigrade/Electron-Markdown-View.git"
},
"files": [
"lib/**/*"
]
}