-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.36 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.36 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
{
"name": "helm",
"productName": "helm",
"version": "0.0.1",
"author": "Nick Bradley <ncbrad@cs.ubc.ca>",
"license": "MIT",
"private": false,
"dependencies": {
"@types/common-tags": "^1.8.0",
"@types/fs-extra": "^8.0.0",
"common-tags": "^1.8.0",
"desktop-native": "https://github.com/nickbradley/desktop-native.git",
"electron-log": "^3.0.5",
"fs-extra": "^8.1.0",
"reflect-metadata": "^0.1.13",
"restify": "^8.2.0",
"restify-cors-middleware": "^1.1.1",
"source-map-support": "^0.5.11",
"sqlite3": "^4.0.9",
"typeorm": "0.2.18",
"vue-async-computed": "^3.6.1",
"vue-awesome": "^3.5.4"
},
"devDependencies": {
"@types/better-sqlite3": "^5.2.2",
"@types/dom-inputevent": "^1.0.3",
"@types/jest": "^24.0.15",
"@types/restify": "^7.2.9",
"@types/restify-cors-middleware": "^1.0.1",
"asar": "^1.0.0",
"electron": "^5.0.7",
"electron-builder": "^20.38.5",
"electron-webpack": "^2.6.2",
"electron-webpack-ts": "^3.1.1",
"electron-webpack-vue": "^2.2.3",
"jest": "^24.8.0",
"prettier": "^1.16.4",
"ts-jest": "^24.0.2",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.4000",
"vue": "^2.6.10",
"webpack": "^4.29.6"
},
"scripts": {
"dev": "tsc && electron-webpack dev",
"compile:main": "electron-webpack main",
"compile": "tsc && electron-webpack",
"dist": "yarn compile && electron-builder",
"watch": "tsc -w",
"lint": "tslint -c tslint.json -p tsconfig.json",
"start": "electron ./dist/main.js",
"postinstall": "electron-builder install-app-deps",
"pack": "yarn dist --dir",
"pack2": "yarn compile && electron-builder --dir",
"test": "jest"
},
"main": "src/main/index.js",
"engines": {
"node": ">=10.0"
},
"keywords": [
"launcher"
],
"cmake-js": {
"runtime": "electron",
"runtimeVersion": "4.0.0",
"arch": "x64"
},
"build": {
"mac": {
"category": "public.app-category.productivity",
"icon": "icons/png",
"extendInfo": {
"LSUIElement": 1
}
},
"linux": {
"target": "pacman"
}
},
"electronWebpack": {
"main": {
"webpackConfig": "webpack.main.js"
},
"renderer": {
"webpackConfig": "webpack.renderer.js"
}
}
}