-
-
Notifications
You must be signed in to change notification settings - Fork 246
/
package.json
141 lines (141 loc) · 3 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "tusk",
"productName": "Tusk",
"version": "0.23.0",
"description": "Refined Evernote desktop app",
"license": "MIT",
"repository": "klaussinani/tusk",
"author": {
"name": "Klaus Sinani",
"email": "[email protected]",
"url": "https://klaussinani.github.io"
},
"maintainers": [
{
"name": "Mario Sinani",
"email": "[email protected]",
"url": "https://github.com/mariosinani"
}
],
"scripts": {
"postinstall": "electron-builder install-app-deps",
"test": "xo && stylelint 'src/style/*.css'",
"release": "build --publish always",
"start": "electron ."
},
"dependencies": {
"auto-launch": "^5.0.1",
"decode-uri-component": "^0.2.0",
"electron-context-menu": "^0.9.0",
"electron-debug": "^1.3.0",
"electron-dl": "^1.11.0",
"electron-settings": "^3.1.4",
"turndown": "^5.0.1"
},
"devDependencies": {
"electron": "6.0.11",
"electron-builder": "22.9.1",
"stylelint": "^9.9.0",
"xo": "*"
},
"xo": {
"envs": [
"browser",
"node"
],
"rules": {
"quote-props": 0
},
"space": 2
},
"stylelint": {
"rules": {
"block-closing-brace-empty-line-before": "never",
"block-closing-brace-newline-after": "always",
"block-no-empty": true,
"block-opening-brace-space-before": "always",
"color-hex-case": "upper",
"color-hex-length": "long",
"color-no-invalid-hex": true,
"comment-no-empty": true,
"declaration-block-semicolon-space-before": "never",
"indentation": 2,
"max-empty-lines": 0,
"no-duplicate-selectors": true
}
},
"build": {
"appId": "com.klaussinani.tusk",
"files": [
"**/*",
"!media${/*}",
"!docs${/*}"
],
"linux": {
"category": "Office",
"description": "Tusk is an unofficial, featureful, open source, community-driven, free Evernote app used by people in more than 130 countries.",
"synopsis": "Refined Evernote desktop app",
"target": [
{
"target": "AppImage",
"arch": [
"ia32",
"x64"
]
},
{
"target": "deb",
"arch": [
"ia32",
"x64"
]
},
{
"target": "pacman",
"arch": [
"ia32",
"x64"
]
},
{
"target": "rpm",
"arch": [
"ia32",
"x64"
]
},
{
"target": "snap",
"arch": [
"x64"
]
}
]
},
"nsis": {
"license": "license.md"
},
"snap": {
"grade": "stable",
"confinement": "strict"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"ia32",
"x64"
]
},
{
"target": "portable",
"arch": [
"ia32",
"x64"
]
}
]
}
}
}