generated from redhat-developer/new-project-template
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
91 lines (91 loc) · 3.13 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
{
"name": "redhat-authentication",
"displayName": "Red Hat Authentication",
"description": "Login to Red Hat Developers",
"version": "1.0.2",
"packageManager": "pnpm@9.7.1+sha512.faf344af2d6ca65c4c5c8c2224ea77a81a5e8859cbc4e06b1511ddce2f0151512431dd19e6aff31f2c6a8f5f2aced9bd2273e1fed7dd4de1868984059d2c4247",
"type": "module",
"icon": "icon.png",
"publisher": "redhat",
"license": "Apache-2.0",
"engines": {
"podman-desktop": "^1.10.0"
},
"main": "./dist/extension.cjs",
"contributes": {
"commands": [
{
"command": "redhat.authentication.signin",
"title": "Red Hat SSO Provider: Sign In"
},
{
"command": "redhat.authentication.navigate.settings",
"title": "Red Hat SSO Provider: Navigate to Authentication Settings"
}
],
"icons": {
"redhat-icon": {
"description": "Red Hat icon",
"default": {
"fontPath": "redhat-icon.woff2",
"fontCharacter": "\\e900"
}
}
}
},
"scripts": {
"build": "vite build && node ./scripts/build.cjs",
"watch": "vite build -w",
"format:check": "prettier --end-of-line auto --cache --check \"{src,types,scripts}/**/*.{ts,js}\"",
"format:fix": "prettier --cache --write \"{src,types,scripts}/**/*.{ts,js}\"",
"lint:clean": "rimraf .eslintcache",
"lint:fix": "node --max-old-space-size=6144 node_modules/eslint/bin/eslint.js --cache . --fix --ext js,ts",
"lint:check": "node --max-old-space-size=6144 node_modules/eslint/bin/eslint.js --cache . --ext js,ts",
"test": "vitest run --coverage",
"test:all": "pnpm test && pnpm test:e2e",
"test:e2e:setup": "xvfb-maybe --auto-servernum --server-args='-screen 0 1280x960x24' --",
"test:e2e": "cross-env E2E_TESTS=true npm run test:e2e:setup npx playwright test tests/src"
},
"dependencies": {
"@podman-desktop/api": "^1.14.1",
"@redhat-developer/rhcra-client": "^0.0.1",
"@redhat-developer/rhsm-client": "^0.0.4",
"axios": "^1.7.7",
"js-yaml": "^4.1.0",
"object-hash": "3.0.0",
"openid-client": "^5.7.0"
},
"devDependencies": {
"7zip-min": "^1.4.5",
"@playwright/test": "^1.48.2",
"@podman-desktop/tests-playwright": "next",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^2.0.5",
"byline": "^5.0.0",
"copyfiles": "^2.4.1",
"cross-env": "7.0.3",
"electron": "^33.2.0",
"eslint": "^8.57.1",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-etc": "^2.0.3",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-redundant-undefined": "^1.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^2.0.4",
"eslint-plugin-unicorn": "^56.0.0",
"mkdirp": "^3.0.1",
"prettier": "^3.3.3",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vitest": "^2.0.5",
"xvfb-maybe": "^0.2.1",
"zip-local": "^0.3.5"
}
}