This repository has been archived by the owner on Nov 15, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
165 lines (165 loc) · 4.53 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"name": "noty",
"productName": "Noty",
"description": "Autosaving sticky note with support for multiple notes without needing multiple windows.",
"version": "2.2.0",
"scripts": {
"clean:deps": "npx del 'node_modules/**/{README,LICENSE,license,.travis.yml,tsconfig.json,*.{md,MD,map,png,svg,ts}}' '!node_modules/**/*.d.ts'",
"clean:dist": "npx del dist",
"clean:releases": "npx del releases",
"clean": "npm run clean:dist && npm run clean:releases",
"compile": "npm run clean:deps && electron-webpack app --env.minify=false",
"build:mac": "npm run compile && electron-builder --mac",
"build:win": "npm run compile && electron-builder --win",
"build:linux": "npm run compile && electron-builder --linux",
"build:all": "npm run clean:releases && npm run compile && electron-builder -mwl",
"dev": "electron-webpack dev",
"prod": "npm run compile && CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder --mac dir && open releases/mac/*.app"
},
"electronWebpack": {
"staticSourceDirectory": "src/renderer/static",
"main": {
"webpackConfig": "webpack.js"
},
"renderer": {
"webpackConfig": "webpack.js"
}
},
"build": {
"appId": "com.fabiospampinato.noty",
"copyright": "Copyright © 2017-present Fabio Spampinato",
"directories": {
"output": "releases"
},
"mac": {
"target": [
"dmg",
"pkg",
"zip"
],
"category": "public.app-category.utilities",
"icon": "resources/icon/icon.png",
"type": "distribution"
},
"dmg": {
"background": "resources/dmg_background/background.png",
"iconSize": 160,
"iconTextSize": 12,
"window": {
"width": 660,
"height": 400
},
"contents": [
{
"x": 180,
"y": 170,
"type": "file"
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
},
"pkg": {
"license": "LICENSE"
},
"win": {
"target": [
"nsis",
"portable",
"zip"
],
"icon": "resources/icon/icon.ico"
},
"nsis": {
"installerIcon": "resources/icon/icon.ico",
"license": "LICENSE",
"warningsAsErrors": false
},
"linux": {
"target": [
"AppImage",
"deb",
"rpm",
"snap"
],
"icon": "resources/icon",
"category": "Utility"
},
"snap": {
"grade": "stable",
"summary": "Autosaving sticky note with support for multiple notes without needing multiple windows."
},
"publish": {
"provider": "github",
"owner": "fabiospampinato",
"releaseType": "release",
"publishAutoUpdate": true
}
},
"license": "MIT",
"author": {
"name": "Fabio Spampinato",
"email": "spampinabio@gmail.com"
},
"homepage": "https://github.com/fabiospampinato/noty",
"repository": {
"type": "git",
"url": "https://github.com/fabiospampinato/noty.git"
},
"bugs": {
"url": "https://github.com/fabiospampinato/noty/issues"
},
"keywords": [
"electron",
"react",
"webpack",
"codemirror",
"sticky",
"note"
],
"dependencies": {
"cash-dom": "^2.3.5",
"codemirror": "^5.40.0",
"conf-merge": "^1.0.0",
"electron-context-menu": "^0.10.0",
"electron-dialog": "^1.0.0",
"electron-is": "^3.0.0",
"electron-localshortcut": "^3.1.0",
"electron-store": "^2.0.0",
"electron-updater": "^4.0.6",
"electron-window-state": "^4.1.1",
"lodash": "^4.17.10",
"overstated": "^1.1.2",
"react": "^16.4.2",
"react-codemirror2": "^5.1.0",
"react-component-identity": "^1.0.1",
"react-component-renderless": "^1.0.2",
"react-dom": "^16.4.2",
"react-router-static": "^1.0.0"
},
"devDependencies": {
"@babel/preset-react": "^7.0.0",
"@types/codemirror": "0.0.60",
"@types/lodash": "^4.14.116",
"@types/react": "^16.4.13",
"@types/react-dom": "^16.0.7",
"del-cli": "^1.1.0",
"electron": "3.0.0",
"electron-builder": "^20.38.4",
"electron-builder-squirrel-windows": "^20.38.3",
"electron-devtools-installer": "^2.2.4",
"electron-webpack": "git://github.com/fabiospampinato/electron-webpack.git#package-electron-webpack",
"electron-webpack-ts": "^3.1.0",
"node-sass": "^4.11.0",
"react-hot-loader": "^4.3.5",
"sass-loader": "^7.1.0",
"terser-webpack-plugin": "^1.2.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.0.3",
"webpack": "^4.17.1"
}
}