-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "paste-without-line-breaks",
"version": "1.0.0",
"description": "It converts text in clipboard to plain text without line breaks for Windows and OSX so that text translators such as google translate can better translate the texts.",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/uygaraydin/paste-without-line-breaks.git"
},
"keywords": [
"paste",
"plain",
"text",
"line",
"breaks"
],
"author": "Uygar Aydin",
"license": "MIT",
"bugs": {
"url": "https://github.com/uygaraydin/paste-without-line-breaks/issues"
},
"homepage": "https://github.com/uygaraydin/paste-without-line-breaks#readme",
"devDependencies": {
"electron": "^19.0.4"
},
"build": {
"appId": "com.my-website.my-app",
"productName": "Paste without Line Breaks",
"copyright": "Copyright © 2022",
"mac": {
"icon": "./icon.png",
"extendInfo": {
"LSUIElement": true
}
}
}
}