-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.44 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
{
"name": "todoapp",
"version": "1.5.0",
"description": "menubar todo app",
"homepage": "https://github.com/YerkoPalma/todoapp",
"repository": {
"url": "https://github.com/YerkoPalma/todoapp"
},
"main": "build/main/index.js",
"license": "MIT",
"author": {
"name": "Yerko Palma",
"email": "yerko.palma@usach.cl",
"url": "https://yerkopalma.me"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"build": "tsc && npm run copy",
"pack": "npm run build && electron-builder",
"dist": "npm run build && electron-builder --macos --linux --windows",
"test": "standard *.ts && depcheck --skip-missing=true --ignores=standard,@types/*,@typescript-eslint/* && npm run test:integration",
"test:integration": "npm run build && ts-node ./test",
"start": "npm run build && electron ./build/main",
"copy": "cp src/renderer/*.css src/renderer/*.html build/renderer/ && mkdir -p build/renderer/styles && cp src/renderer/styles/*.css build/renderer/styles/"
},
"build": {
"extends": null,
"files": [
"./build/**/*",
"./assets/*"
],
"directories": {
"buildResources": "assets"
},
"appId": "com.yerkopalma.Todoapp",
"mac": {
"darkModeSupport": true
},
"dmg": {
"iconSize": 160,
"contents": [
{
"x": 180,
"y": 170
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
}
},
"standard": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
},
"devDependencies": {
"@types/dragula": "^2.1.34",
"@types/tape": "^4.2.33",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"depcheck": "^0.8.1",
"electron": "^5.0.4",
"electron-builder": "^20.39.0",
"electron-reload": "^1.4.0",
"spectron": "^6.0.0",
"standard": "^12.0.1",
"tape": "^4.10.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
},
"dependencies": {
"@types/auto-launch": "^5.0.1",
"auto-launch": "^5.0.5",
"dragula": "^3.7.2",
"electron-debug": "^3.0.0",
"electron-store": "^3.3.0",
"electron-unhandled": "^2.2.0",
"electron-util": "^0.12.1",
"menubar": "^6.0.3",
"nanohtml": "^1.6.3",
"nanomorph": "^5.4.0"
}
}