-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 4.06 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
114
115
116
117
118
119
120
121
122
123
{
"name": "Carnet",
"version": "0.24.3",
"main": "main.js",
"license": "GPLv3",
"scripts": {
"postinstall": "install-app-deps",
"webpack": "bash compile.sh electron . && webpack",
"android": "webpack && rm ../CarnetAndroid/app/src/main/assets/editor -r || true && cp dist ../CarnetAndroid/app/src/main/assets/editor -R",
"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",
"@tiptap/core": "^2.0.3",
"@tiptap/extension-underline": "^2.1.6",
"@tiptap/pm": "^2.0.3",
"@tiptap/starter-kit": "^2.0.3",
"archiver": "^5.3.0",
"copy-webpack-plugin": "^11.0.0",
"desandro-matches-selector": "^2.0.2",
"electron-store": "^8.0.1",
"ev-emitter": "^2.1.2",
"fizzy-ui-utils": "^3.0.0",
"fs": "^0.0.1-security",
"fs-extra": "^11.1.0",
"fs.promises": "^0.1.2",
"get-size": "^3.0.0",
"imports-loader": "^4.0.1",
"into-stream": "^7.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": "^2.1.3",
"node-polyfill-webpack-plugin": "^2.0.1",
"prosemirror-example-setup": "^1.2.1",
"prosemirror-markdown": "^1.10.1",
"prosemirror-model": "^1.19.0",
"prosemirror-state": "^1.4.2",
"prosemirror-transform": "^1.7.1",
"prosemirror-view": "^1.30.1",
"qs": "^6.10.2",
"rimraf": "^4.1.1",
"textversionjs": "^1.1.3",
"tiptap-markdown": "^0.6.0",
"webdav": "^4.8.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"electron": "22.0.3",
"electron-builder": "^23.6.0",
"html-webpack-plugin": "^5.5.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}