-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.78 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.78 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
93
94
95
96
97
98
99
100
101
102
{
"name": "redhat-authentication",
"displayName": "Red Hat Authentication",
"description": "Login to Red Hat Developers",
"version": "1.0.7",
"packageManager": "pnpm@10.15.0+sha512.486ebc259d3e999a4e8691ce03b5cac4a71cbeca39372a9b762cb500cfdf0873e2cb16abe3d951b1ee2cf012503f027b98b6584e4df22524e0c7450d9ec7aa7b",
"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": {
"generate:registry-authorizer": "npx openapi-typescript src/rh-api/registry-authorizer-schema.json -o src/rh-api/gen/registry-authorizer.d.ts",
"generate:subscription": "npx openapi-typescript src/rh-api/subscription-schema.json -o src/rh-api/gen/subscription.d.ts",
"build": "pnpm generate:subscription && pnpm generate:registry-authorizer && 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 . --cache-strategy content --fix --ext js,ts",
"lint:check": "node --max-old-space-size=6144 node_modules/eslint/bin/eslint.js --cache . --cache-strategy content --ext js,ts",
"test": "vitest run --coverage",
"test:all": "pnpm test && pnpm test:e2e",
"test:e2e:setup": "playwright install chromium && xvfb-maybe --auto-servernum --server-args='-screen 0 1280x960x24' --",
"test:e2e": "cross-env E2E_TESTS=true DEBUG=pw:channel:response,pw:channel:event npm run test:e2e:setup npx playwright test tests/src"
},
"dependencies": {
"@podman-desktop/api": "^1.14.1",
"@podman-desktop/podman-extension-api": "^1.26.1",
"js-yaml": "^4.1.1",
"object-hash": "3.0.0",
"openapi-fetch": "^0.17.0",
"openid-client": "^5.7.0"
},
"devDependencies": {
"7zip-min": "^3.0.1",
"@playwright/test": "^1.59.1",
"@podman-desktop/tests-playwright": "^1.26.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "^24",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^3.2.4",
"byline": "^5.0.0",
"copyfiles": "^2.4.1",
"cross-env": "^10.1.0",
"eslint": "^8.57.1",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-etc": "^2.0.3",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.32.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": "^4.0.3",
"eslint-plugin-unicorn": "^56.0.1",
"mkdirp": "^3.0.1",
"prettier": "^3.8.3",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^8.0.8",
"vitest": "^3.2.4",
"xvfb-maybe": "^0.2.1",
"adm-zip": "^0.5.17"
},
"pnpm": {
"overrides": {
"test-exclude>glob":"^13.0.0",
"cross-env>cross-spawn": "^7.0.6",
"eslint>cross-spawn": "^7.0.6",
"rollup": "^4.59.0"
}
},
"extensionDependencies": [
"podman-desktop.podman"
]
}