-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·80 lines (80 loc) · 2.14 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
{
"name": "Dropsi",
"version": "1.0.0",
"description": "A minimal Electron application written with Typescript",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "tslint -c tslint.json -p tsconfig.json",
"open": "ELECTRON_ENABLE_LOGGING=1 && electron ./lib/main/index.js",
"start": "npm run build && npm run open",
"dev": "concurrently --kill-others \"yarn run watch\" \"yarn run start\"",
"dist": "electron-builder",
"sign": "electron-osx-sign ./dist/mas/Dropsi.app"
},
"keywords": [
"dropsi"
],
"author": "GitHub",
"license": "CC0-1.0",
"devDependencies": {
"@types/color": "^3.0.0",
"@types/date-fns": "^2.6.0",
"@types/electron-store": "^1.3.0",
"@types/lodash": "^4.14.121",
"@types/menubar": "^5.1.6",
"@types/mousetrap": "^1.6.1",
"@types/react": "^16.8.6",
"@types/react-dom": "^16.8.2",
"@types/shortid": "^0.0.29",
"@types/styled-components": "^4.1.11",
"concurrently": "^4.1.0",
"electron": "^4.0.6",
"electron-builder": "^20.39.0",
"electron-osx-sign": "^0.4.11",
"tslint": "^5.10.0",
"typescript": "^3.3.3333"
},
"dependencies": {
"color": "^3.1.0",
"date-fns": "^1.30.1",
"electron-store": "^3.2.0",
"fuzzystring": "^1.0.2",
"lodash": "^4.17.11",
"menubar": "^5.2.3",
"module-alias": "^2.2.0",
"mousetrap": "^1.6.2",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-feather": "^1.1.6",
"shortid": "^2.2.14",
"styled-components": "^4.1.3",
"tsconfig-paths": "^3.8.0"
},
"_moduleAliases": {
"~app": "lib",
"~assets": "assets"
},
"main": "./lib/main/index.js",
"build": {
"appId": "com.timpler.dropsi",
"mac": {
"category": "public.app-category.productivity",
"target": [
"pkg",
"dmg",
"zip",
"mas"
],
"entitlements": "build/entitlements.mac.plist",
"type": "distribution",
"icon": "build/icon.icns"
},
"mas": {
"entitlements": "build/entitlements.mas.plist",
"type": "distribution",
"category": "public.app-category.productivity",
"icon": "build/icon.icns"
}
}
}