-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.86 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.86 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
{
"name": "github-account",
"displayName": "GitHub Account Authentication",
"description": "Sign in and authenticate with a GitHub account",
"version": "0.3.0-next",
"icon": "icon.png",
"publisher": "podman-desktop",
"license": "Apache-2.0",
"engines": {
"podman-desktop": "^1.19.0"
},
"main": "./dist/extension.cjs",
"scripts": {
"build": "vite build",
"test": "vitest run --coverage",
"test:watch": "vitest watch --coverage",
"format:check": "biome format",
"format:fix": "biome format --write",
"lint:check": "eslint . && biome lint",
"lint:fix": "eslint . --fix && biome lint --fix",
"watch": "vite build -w",
"typecheck": "tsc --noEmit"
},
"pnpm": {
"overrides": {
"glob@>=10.2.0 <10.5.0": ">=10.5.0",
"rollup@>=4.0.0 <4.59.0": ">=4.59.0",
"minimatch@<3.1.4": ">=3.1.4",
"minimatch@>=9.0.0 <9.0.7": ">=9.0.7",
"picomatch@>=4.0.0 <4.0.4": ">=4.0.4",
"brace-expansion@<1.1.14": ">=1.1.14 <2"
}
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@eslint/compat": "^2.0.5",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@octokit/rest": "^22.0.1",
"@podman-desktop/api": "1.26.2",
"@types/node": "^24",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^10.2.1",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-etc": "^2.0.3",
"eslint-plugin-file-progress": "^4.0.0",
"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": "^13.0.0",
"eslint-plugin-sonarjs": "^4.0.3",
"eslint-plugin-unicorn": "^64.0.0",
"globals": "^17.5.0",
"typescript": "5.9.3",
"typescript-eslint": "^8.59.1",
"vite": "^8.0.10",
"vitest": "^3.2.4"
}
}