forked from klaudiosinani/tusk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.28 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.28 KB
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
{
"name": "tusk-app",
"productName": "Tusk",
"version": "0.11.0",
"description": "Refined Evernote desktop app",
"license": "MIT",
"repository": "klauscfhq/tusk",
"author": {
"name": "Klaus Sinani",
"email": "klauscfhq@protonmail.com",
"url": "https://klauscfhq.github.io"
},
"maintainers": [
{
"name": "Mario Sinani",
"email": "mariosinani@protonmail.ch",
"url": "github.com/mariocfhq"
}
],
"scripts": {
"start": "electron .",
"dist": "build --publish never",
"clean": "node ./bin/clean.js",
"test": "npm run test:js && npm run test:css",
"test:css": "stylelint 'style/*.css'",
"test:js": "xo",
"pack:macos": "electron-packager . --no-prune --overwrite --asar --out=dist --platform=darwin --arch=x64 --icon=static/Icon.icns && cd dist/Tusk-darwin-x64 && zip -ryXq9 ../tusk-macos-${npm_package_version}.zip Tusk.app && electron-installer-dmg ../Tusk-darwin-x64/Tusk.app Tusk --icon=../../static/Icon.icns && cp Tusk.dmg ../../dist/tusk-macos-${npm_package_version}.dmg"
},
"dependencies": {
"auto-launch": "^5.0.1",
"chalk": "^2.3.0",
"decode-uri-component": "^0.2.0",
"electron-context-menu": "^0.9.0",
"electron-debug": "^1.3.0",
"electron-dl": "^1.11.0",
"electron-is-dev": "^0.1.2",
"electron-settings": "^3.1.4",
"fs-extra": "^4.0.2",
"ms": "^2.0.0",
"signale": "^1.2.1",
"simple-get": "^2.7.0",
"stylelint": "^9.2.0",
"time-stamp": "^2.0.0",
"turndown": "^4.0.1"
},
"devDependencies": {
"electron": "1.8.4",
"electron-builder": "19.33.0",
"electron-builder-squirrel-windows": "19.33.0",
"electron-installer-dmg": "0.2.1",
"electron-packager": "9.1.0",
"xo": "^0.20.0"
},
"xo": {
"space": 2,
"envs": [
"node",
"browser"
]
},
"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": {
"snap": {
"grade": "stable",
"confinement": "strict"
},
"files": [
"**/*",
"!media${/*}",
"!docs${/*}"
],
"appId": "com.klauscfhq.tusk",
"linux": {
"synopsis": " Refined Evernote desktop app",
"description": "Tusk is an unofficial, featureful, open source, community-driven, free Evernote app used by people in more than 130 countries.",
"category": "Office",
"target": [
{
"target": "deb",
"arch": [
"ia32",
"x64"
]
},
{
"target": "AppImage",
"arch": [
"ia32",
"x64"
]
},
{
"target": "rpm",
"arch": [
"ia32",
"x64"
]
},
{
"target": "snap",
"arch": [
"x64"
]
}
]
},
"win": {
"target": [
"squirrel"
]
}
}
}