-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 1.88 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
{
"name": "nimble",
"description": "HTML, markdown, and SVG viewer and code editor.",
"version": "1.5.0",
"author": "Brandon Fowler",
"license": "LGPL-3.0-or-later",
"main": "./build/main.js",
"scripts": {
"start": "webpack --mode=development && electron .",
"build": "webpack --mode=production && electron-builder --publish never",
"release": "webpack --mode=production && electron-builder",
"lint": "eslint --ext .ts ."
},
"repository": {
"type": "git",
"url": "https://github.com/BrandonXLF/nimble.git"
},
"devDependencies": {
"@types/lodash.throttle": "^4.1.9",
"@types/showdown": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"css-loader": "^7.1.2",
"electron": "^31.1.0",
"electron-builder": "^24.13.3",
"eslint": "^8.57.0",
"eslint-plugin-deprecation": "^3.0.0",
"file-loader": "^6.2.0",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"mini-css-extract-plugin": "^2.9.0",
"node-loader": "^2.0.0",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"ace-builds": "^1.35.2",
"electron-store": "^10.0.0",
"electron-updater": "^6.2.1",
"lodash.throttle": "^4.1.1",
"showdown": "^2.1.0"
},
"build": {
"appId": "me.brandonfowler.nimble",
"productName": "Nimble HTML and Markdown",
"executableName": "nimble",
"files": [
"build/*",
"package.json"
],
"extraFiles": [
"LICENSE.md"
],
"fileAssociations": [
{
"ext": "html",
"name": "HTML File"
},
{
"ext": "htm",
"name": "HTML File"
},
{
"ext": "md",
"name": "Markdown File"
},
{
"ext": "markdown",
"name": "Markdown File"
},
{
"ext": "svg",
"name": "SVG File"
}
],
"publish": [
"github"
]
}
}