forked from oliverschwendener/ueli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.16 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
{
"name": "ueli",
"productName": "ueli",
"version": "8.10.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/oliverschwendener/ueli"
},
"homepage": "https://ueli.app",
"author": {
"name": "Oliver Schwendener",
"email": "[email protected]",
"url": "https://github.com/oliverschwendener"
},
"description": "This is a keystroke launcher for Windows and macOS.",
"os": [
"win32",
"darwin"
],
"keywords": [
"keystroke",
"launcher",
"search",
"Windows",
"macOS"
],
"main": "./bundle/main.js",
"scripts": {
"bundle": "./node_modules/.bin/webpack",
"start": "./node_modules/.bin/electron . --remote-debugging-port=9223",
"lint": "./node_modules/.bin/tslint --project tsconfig.json --config tslint.json",
"lint:fix": "./node_modules/.bin/tslint --project tsconfig.json --config tslint.json --fix",
"test": "./node_modules/.bin/jest --config jest.json --silent .",
"package:dir": "./node_modules/.bin/electron-builder --dir --config electron-builder-config.yml --publish never",
"package": "./node_modules/.bin/electron-builder --config electron-builder-config.yml --publish never",
"package:publish": "./node_modules/.bin/electron-builder --config electron-builder-config.yml --publish always"
},
"devDependencies": {
"@types/color": "^3.0.0",
"@types/jest": "^25.1.4",
"@types/mathjs": "^5.0.1",
"@types/node-powershell": "^3.1.0",
"@types/vue-color": "^2.4.2",
"axios": "^0.20.0",
"color": "^3.1.2",
"electron": "^10.1.2",
"electron-builder": "^22.4.1",
"electron-store": "^5.1.1",
"electron-updater": "^4.0.14",
"fuse.js": "^6.4.1",
"jest": "^26.4.2",
"mathjs": "^5.10.3",
"node-powershell": "^4.0.0",
"simple-plist": "^1.1.0",
"ts-jest": "^26.4.0",
"ts-loader": "^6.0.4",
"tslint": "^6.1.0",
"typescript": "^4.0.3",
"vue": "^2.6.12",
"vue-color": "^2.7.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"winston": "^3.2.1"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.14.0",
"bulma": "^0.9.0",
"bulma-extensions": "^6.2.7"
}
}