-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.58 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.58 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
{
"name": "nextcloud-notes-client",
"version": "1.4.5-alpha",
"productName": "Nextcloud Notes Client",
"description": "Access and edit your Nextcloud Notes on the Mac",
"main": "./dist/js/main.min.js",
"scripts": {
"start": "electron .",
"rebuild": "./node_modules/.bin/electron-rebuild",
"debug": "electron . --debug-brk = 5858",
"package": "gulp build; npm prune -production; electron-packager . --asar=true --electron-version=13.4.0 --overwrite --platform=darwin --arch=x64 --icon=dist/assets/icon/icon.icns --ignore=\"app-source|gulpfile\\.js|README\\.md\" --prune=false --out=build --darwinDarkModeSupport=true; npm install;",
"package-arm": "gulp build; npm prune -production; electron-packager . --asar=true --electron-version=13.4.0 --overwrite --platform=darwin --arch=arm64 --icon=dist/assets/icon/icon.icns --ignore=\"app-source|gulpfile\\.js|README\\.md\" --prune=false --out=build --darwinDarkModeSupport=true; npm install;"
},
"author": {
"name": "D.G. Midwinter",
"email": "duncan@midwinter-dg.com",
"url": "https://www.midwinter-dg.com"
},
"homepage": "https://www.midwinter-dg.com/mac-apps/nextcloud-notes-client.html",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dgmid/nextcloud-notes-mac-client"
},
"bugs": "https://github.com/dgmid/nextcloud-notes-mac-client/issues",
"browserslist": [
"last 1 Chrome versions"
],
"dependencies": {
"@electron/remote": "^2.0.1",
"color": "^4.0.1",
"compare-versions": "^3.6.0",
"dateformat": "^4.6.3",
"easymde": "^2.15.0",
"electron-log": "^4.4.1",
"electron-store": "^8.0.1",
"fs-extra": "^10.0.0",
"highlight.js": "^11.2.0",
"html-entities": "^2.3.2",
"i18next": "^20.6.1",
"i18next-electron-language-detector": "0.0.10",
"i18next-sync-fs-backend": "^1.1.1",
"jquery": "^3.6.0",
"jquery-i18next": "^1.2.1",
"js-search": "^2.0.0",
"marked": "^3.0.4",
"mousetrap": "^1.6.5",
"pretty": "^2.0.0",
"remove-markdown": "^0.3.0",
"snowball": "^0.3.1",
"stopword": "^1.0.11"
},
"devDependencies": {
"del": "^6.0.0",
"devtron": "^1.4.0",
"electron": "^13.4.0",
"electron-rebuild": "^3.2.3",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-cssnano": "^2.1.3",
"gulp-htmlmin": "^5.0.1",
"gulp-iconutil": "^1.2.2",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-string-replace": "^1.1.2",
"gulp-uglify-es": "^3.0.0",
"pump": "^3.0.0",
"reset-css": "^5.0.1",
"sass": "^1.42.1"
}
}