-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
102 lines (102 loc) · 3.19 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
{
"name": "Carnet",
"version": "0.24.3",
"main": "main.js",
"license": "GPLv3",
"scripts": {
"postinstall": "install-app-deps",
"start": "npm install && electron .",
"pack": "electron-builder --dir",
"distapp": "electron-builder --x64 --ia32 --linux AppImage",
"distmac": "electron-builder --x64 --mac zip",
"distdmg": "electron-builder --x64 --mac dmg",
"distsnap": "electron-builder --x64 --linux snap",
"dist": "electron-builder"
},
"author": {
"name": "Phie",
"email": "[email protected]",
"url": "https://github.com/PhieF/CarnetElectron/"
},
"build": {
"appId": "org.spisoft.carnet",
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"mac": {
"category": "public.app-category.productivity",
"target": [
"dmg",
"zip"
]
},
"linux": {
"category": "Office",
"icon": "build/icon.png",
"target": [
{
"target": "AppImage",
"arch": [
"ia32",
"x64"
]
},
{
"target": "snap"
}
]
},
"snap": {
"confinement": "strict",
"grade": "stable",
"description": "Carnet is a powerful note taking app which purpose is not only to write your shopping list but can also be used to write longer texts, stories, etc. Carnet is available on Android and Linux, also on your web browser with full compatibility with Windows, Mac and Linux, with sync capabilities (not mandatory) \n \n'''Features''' \n\n * Complete editor : bold/italic/underline/color/highlight \n * Import from Google Keep (only on desktop, then sync on mobile) \n * Insert images / review \n * Open HTML format \n * Organize with folders and choose root storage folder depending on your needs \n * Keywords \n * Quickly see your recent notes \n * Search amount your notes \n * Protect the app with a pin code (won't encrypt notes) on android \n * Statistics : words/sentences/characters \n * Sync with NextCloud \n * Record audio \n * Online editor as a NextCloud App",
"summary": "Powerful note taking app with sync, online editor and android app"
},
"win": {
"target": "squirrel",
"icon": "build/icon.ico"
}
},
"dependencies": {
"@electron/remote": "^2.0.4",
"archiver": "^5.3.0",
"desandro-matches-selector": "^2.0.2",
"electron-store": "^8.0.1",
"ev-emitter": "^2.1.2",
"fizzy-ui-utils": "^3.0.0",
"fs-extra": "^10.0.0",
"fs.promises": "^0.1.2",
"get-size": "^3.0.0",
"imports-loader": "^3.1.1",
"into-stream": "^6.0.0",
"jimp": "^0.16.1",
"jquery": "^3.6.0",
"jquery-mobile": "^1.5.0-alpha.1",
"jszip": "^3.7.1",
"lockfile": "^1.0.4",
"masonry-layout": "^4.2.2",
"mkdirp": "^1.0.4",
"qs": "^6.10.2",
"rimraf": "^3.0.2",
"textversionjs": "^1.1.3",
"webdav": "^4.8.0"
},
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"electron": "16.0.6",
"electron-builder": "^22.14.5"
}
}