forked from patrikx3/onenote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.53 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
{
"name": "p3x-onenote",
"version": "2023.10.241",
"description": "📚 P3X OneNote Linux",
"main": "src/electron/app.js",
"corifeus": {
"description-snap": "P3X OneNote Linux",
"description-npm": "📚 P3X OneNote Linux",
"snap": true,
"prefix": "p3x-",
"publish": true,
"type": "p3x",
"code": "Linux",
"nodejs": "v20.5.0",
"reponame": "onenote",
"build": true,
"opencollective": false,
"install-appimage-launcher": "sudo add-apt-repository ppa:appimagelauncher-team/stable && sudo apt install -y appimagelauncher"
},
"bin": {
"p3x-onenote": "bin/p3x-onenote.js"
},
"scripts": {
"run": "electron --no-sandbox .",
"test": "grunt",
"build": "electron-builder --x64 build/dist",
"build-test": "electron-builder build/dist -p always",
"postinstall-save": "opencollective postinstall",
"start": "node ./node_modules/.bin/electron ./src/electron/app.js",
"publish-electron": "rm -rf dist && electron-builder --p onTagOrDraft --linux --armv7l --arm64 --linux AppImage deb rpm --x64",
"publish-electron-deb": "rm -rf dist && electron-builder --p onTagOrDraft --linux --armv7l --arm64 --linux deb --x64",
"publish-electron-test": "rm -rf dist && electron-builder --p onTagOrDraft --linux --linux AppImage deb --x64",
"publish-electron-snap": "rm -rf dist && electron-builder --linux snap -p never",
"publish-windows": "rimraf dist && electron-builder -p always --windows",
"publish-electron-yml": "node ./node_modules/corifeus-builder/src/utils/appimage/post-build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patrikx3/onenote.git"
},
"keywords": [
"onenote",
"linux"
],
"author": "Patrik Laszlo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/patrikx3/onenote/issues"
},
"homepage": "https://corifeus.com/onenote",
"dependencies": {
"@electron/remote": "^2.0.10",
"@fontsource/roboto": "^5.0.8",
"@fortawesome/fontawesome-free": "^6.4.2",
"angular": "^1.8.2",
"angular-animate": "^1.8.2",
"angular-aria": "^1.8.2",
"angular-material": "^1.2.4",
"angular-messages": "^1.8.3",
"corifeus-utils": "^2023.10.134",
"electron": "^25.4.0",
"electron-store": "^8.1.0",
"electron-updater": "^6.1.2",
"semver": "^7.5.4"
},
"devDependencies": {
"corifeus-builder": "^2023.10.135",
"electron-builder": "^24.6.3"
},
"engines": {
"node": ">=12.13.0"
},
"build": {
"afterAllArtifactBuild": "./node_modules/corifeus-builder/src/utils/appimage/after-all-artifact-build.js",
"publish": [
{
"provider": "github",
"owner": "patrikx3",
"repo": "onenote"
}
],
"appId": "p3x.onenote",
"copyright": "MIT",
"productName": "P3X-OneNote",
"linux": {
"category": "Office",
"icon": "./src/electron/images/",
"target": "deb"
},
"win": {
"icon": "src/electron/images/",
"target": "nsis"
},
"nsis": {
"artifactName": "${name}-electron-setup-${os}-${version}.${ext}"
},
"snap": {
"environment": {
"DISABLE_WAYLAND": 1
}
}
}
}