-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
113 lines (113 loc) · 3.13 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "wournal",
"productName": "Wournal",
"version": "0.0.8",
"description": "An SVG Editor for Handwritten Documents",
"author": {
"name": "dominiksta"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dominiksta/wournal.git"
},
"bugs": {
"url": "https://github.com/dominiksta/wournal/issues"
},
"license": "LGPL-2.1",
"main": ".webpack/main",
"scripts": {
"dev": "npm run start",
"start": "cross-env NODE_ENV=development electron-forge start",
"package:portable": "cross-env PKG_PORTABLE=true electron-forge package",
"package": "electron-forge package",
"make:portable": "cross-env PKG_PORTABLE=true electron-forge make --targets=zip",
"make": "electron-forge make"
},
"dependencies": {
"@mvuijs/core": "0.0.4",
"@mvuijs/ui5": "1.24.8",
"@ui5/webcomponents": "~1.24.8",
"@pdf-lib/fontkit": "^1.1.1",
"ajv": "^8.12.0",
"dompurify": "^3.0.6",
"error-stack-parser": "^2.1.4",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"marked": "^12.0.2",
"path-browserify": "^1.0.1",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^4.0.379",
"source-map": "^0.7.4",
"stream-browserify": "^3.0.0"
},
"devDependencies": {
"@electron-addons/electron-forge-maker-nsis": "^7.0.2",
"@electron-forge/cli": "^7.4.0",
"@electron-forge/maker-zip": "^7.4.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.4.0",
"@electron-forge/plugin-fuses": "^7.4.0",
"@electron-forge/plugin-webpack": "^7.4.0",
"@electron-forge/publisher-github": "^7.4.0",
"@electron/fuses": "^1.8.0",
"@reforged/maker-appimage": "^3.3.2",
"@types/dompurify": "^3.0.5",
"@types/lodash": "^4.17.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/webpack-asset-relocator-loader": "^1.7.3",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^6.11.0",
"electron": "31.1.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"fork-ts-checker-webpack-plugin": "^7.3.0",
"node-loader": "^2.0.0",
"style-loader": "^3.3.4",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"overrides": {
"canvas": "npm:dry-uninstall"
},
"keywords": [],
"build": {
"productName": "Wournal",
"appId": "me.dominiksta.wournal",
"fileAssociations": [
{
"ext": "woj",
"name": "Wournal Notebook",
"role": "Editor",
"mimeType": "image/wournal"
},
{
"ext": "svg",
"name": "Scalable Vector Graphics",
"role": "Viewer",
"mimeType": "image/svg+xml"
},
{
"ext": "pdf",
"name": "Portable Document Format",
"role": "Viewer",
"mimeType": "application/pdf"
}
],
"win": {
"target": [
"nsis"
],
"icon": "src/renderer/res/icon/wournal/logo.ico",
"publish": null
},
"nsis": {
"oneClick": "false",
"allowToChangeInstallationDirectory": true,
"license": "LICENSE",
"publish": null
}
}
}