forked from Zettlr/Zettlr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
165 lines (165 loc) · 6.11 KB
/
package.json
File metadata and controls
165 lines (165 loc) · 6.11 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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"name": "zettlr",
"productName": "Zettlr",
"homepage": "https://www.zettlr.com",
"author": {
"name": "Hendrik Erz",
"email": "info@zettlr.com"
},
"repository": {
"type": "git",
"url": "git://github.com/Zettlr/Zettlr.git"
},
"version": "3.0.0-beta.2",
"license": "GPL-3.0",
"description": "A Markdown Editor for the 21st century.",
"main": ".webpack/main",
"scripts": {
"start": "cross-env NODE_ENV=develop electron-forge start",
"package": "cross-env NODE_ENV=production electron-forge package",
"package:mac-x64": "cross-env NODE_ENV=production npm_config_arch=x64 electron-forge package --platform=darwin --arch=x64",
"package:mac-arm": "cross-env NODE_ENV=production npm_config_arch=arm64 electron-forge package --platform=darwin --arch=arm64",
"package:win-x64": "cross-env NODE_ENV=production npm_config_arch=x64 electron-forge package --platform=win32 --arch=x64",
"package:win-arm": "cross-env NODE_ENV=production npm_config_arch=arm64 electron-forge package --platform=win32 --arch=arm64",
"package:linux-x64": "cross-env NODE_ENV=production npm_config_arch=x64 electron-forge package --platform=linux --arch=x64",
"package:linux-arm": "cross-env NODE_ENV=production npm_config_arch=arm64 electron-forge package --platform=linux --arch=arm64",
"release:mac-x64": "electron-builder --mac --x64 --publish never --prepackaged out/Zettlr-darwin-x64/Zettlr.app",
"release:mac-arm": "electron-builder --mac --arm64 --publish never --prepackaged out/Zettlr-darwin-arm64/Zettlr.app",
"release:win-x64": "electron-builder --win --x64 --publish never --prepackaged out/Zettlr-win32-x64",
"release:win-arm": "electron-builder --win --ia32 --arm64 --publish never --prepackaged out/Zettlr-win32-arm64",
"release:linux-x64": "electron-builder --linux AppImage deb rpm zip --x64 --publish never --prepackaged out/Zettlr-linux-x64",
"release:linux-arm": "electron-builder --linux AppImage deb rpm zip --arm64 --publish never --prepackaged out/Zettlr-linux-arm64",
"update:csl": "node scripts/update-csl.mjs",
"update:citation": "node scripts/update-citation.mjs",
"test": "mocha",
"test-gui": "cross-env NODE_ENV=develop node scripts/test-gui/index.mjs",
"lint": "eslint --ext js,vue,ts source",
"lint:po": "node scripts/lint-po.mjs"
},
"config": {
"forge": "./forge.config.js"
},
"dependencies": {
"@cds/core": "^6.3.0",
"@codemirror/autocomplete": "^6.4.2",
"@codemirror/collab": "^6.0.0",
"@codemirror/commands": "^6.2.1",
"@codemirror/lang-css": "^6.0.2",
"@codemirror/lang-javascript": "^6.1.4",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.1.0",
"@codemirror/lang-php": "^6.0.1",
"@codemirror/lang-python": "^6.1.1",
"@codemirror/language": "^6.6.0",
"@codemirror/legacy-modes": "^6.3.1",
"@codemirror/search": "^6.2.3",
"@codemirror/state": "^6.2.0",
"@codemirror/view": "^6.9.1",
"@lezer/common": "^1.0.1",
"@lezer/highlight": "^1.1.2",
"@replit/codemirror-emacs": "^6.0.0",
"@replit/codemirror-vim": "^6.0.4",
"adm-zip": "^0.5.9",
"archiver": "^5.3.1",
"astrocite": "^0.16.4",
"bcp-47": "^2.1.0",
"chalk": "^5.1.2",
"chart.js": "4.x.x",
"chokidar": "^3.5.3",
"citeproc": "^2.4.62",
"command-exists": "^1.2.9",
"d3": "^7.4.4",
"gettext-parser": "^6.0.0",
"got": "^12.5.2",
"katex": "^0.16.3",
"ky": "0.33.x",
"lodash": "^4.17.21",
"luxon": "^3.0.0",
"md5": "^2.3.0",
"mermaid": "^9.0.0",
"minimatch": "^5.0.0",
"moment": "^2.29.2",
"nodehun": "^3.0.2",
"rehype-parse": "^8.0.4",
"rehype-remark": "^9.1.2",
"remark": "^14.0.2",
"remark-frontmatter": "^4.0.1",
"remark-lint-no-consecutive-blank-lines": "^4.1.2",
"remark-lint-no-undefined-references": "^4.2.0",
"remark-math": "^5.1.1",
"remark-preset-lint-consistent": "^5.1.1",
"remark-preset-lint-recommended": "^6.1.2",
"remark-stringify": "^10.0.2",
"rimraf": "^3.0.2",
"sanitize-filename": "^1.6.3",
"sanitize-html": "^2.7.3",
"semver": "^7.3.8",
"tippy.js": "^6.3.7",
"unified": "^10.1.2",
"uuid": "^9.0.0",
"vue": "^3.2.41",
"vue-virtual-scroller": "^2.0.0-beta.7",
"vuex": "^4.0.2",
"yaml": "^2.1.3"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"resolutions": {
"@codemirror/language": "^6.6.0",
"@codemirror/view": "^6.9.1"
},
"devDependencies": {
"@electron-forge/cli": "^6.0.5",
"@electron-forge/maker-zip": "^6.0.5",
"@electron-forge/plugin-webpack": "^6.0.5",
"@electron/notarize": "^1.2.3",
"@types/adm-zip": "^0.5.0",
"@types/archiver": "^5.3.1",
"@types/command-exists": "^1.2.0",
"@types/d3": "^7.4.0",
"@types/gettext-parser": "^4.0.2",
"@types/katex": "^0.16.0",
"@types/lodash": "^4.14.191",
"@types/luxon": "^3.2.0",
"@types/md5": "^2.3.2",
"@types/mermaid": "^9.2.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.0",
"@types/rimraf": "^3.0.2",
"@types/sanitize-html": "^2.8.0",
"@types/semver": "^7.3.13",
"@types/showdown": "^2.0.0",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vercel/webpack-asset-relocator-loader": "^1.7.3",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"csso": "^5.0.5",
"electron": "22.x.x",
"electron-builder": "^23.6.0",
"electron-devtools-installer": "^3.2.0",
"eslint": "^8.26.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "26.x.x",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.4.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.7.0",
"jsdom": "^20.0.2",
"less": "^4.1.2",
"less-loader": "^11.1.0",
"mocha": "^10.0.0",
"node-loader": "^2.0.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.6.0",
"tsconfig-paths": "^4.0.0",
"typescript": "4.9.x",
"vue-loader": "^17.0.1",
"webpack": "^5.72.0"
},
"packageManager": "yarn@3.3.1"
}