-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.59 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
{
"name": "frost",
"version": "0.1.0",
"license": "Apache-2.0",
"author": "Zohar Zilberman <[email protected]>",
"description": "AWS SSO Credentials Refresher",
"repository": {
"type": "git",
"url": "https://github.com/popen2/frost.git"
},
"main": "./dist/main.js",
"scripts": {
"build:icons": "copyfiles --up 1 \"./src/icons/**/TrayIcon*.png\" ./dist/",
"build": "tsc && yarn build:icons",
"watch": "tsc -w",
"lint": "eslint -c .eslintrc --ext .ts ./src",
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make"
},
"devDependencies": {
"@electron-forge/cli": "^6.0.4",
"@electron-forge/maker-zip": "^6.0.4",
"@electron-forge/publisher-github": "^6.0.4",
"@types/aws-sdk": "^2.7.0",
"@types/electron-prompt": "^1.6.1",
"@types/ini": "^1.3.31",
"@types/js-yaml": "^4.0.5",
"@types/request": "^2.48.8",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"copyfiles": "^2.4.1",
"electron": "^22.1.0",
"eslint": "^8.33.0",
"typescript": "^4.9.4"
},
"dependencies": {
"@aws-sdk/client-sso-oidc": "^3.259.0",
"@kubernetes/client-node": "^0.18.1",
"@types/uuid": "^9.0.0",
"aws-sdk": "^2.1304.0",
"axios": "^1.2.6",
"delay": "^5.0.0",
"electron-log": "^4.4.6",
"electron-prompt": "^1.7.0",
"electron-store": "^8.0.1",
"ini": "^3.0.0",
"js-yaml": "^4.1.0",
"moment": "^2.29.4",
"slugify": "^1.6.5",
"update-electron-app": "^2.0.1",
"uuid": "^9.0.0"
}
}