-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.67 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.67 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
{
"name": "bootc",
"displayName": "Bootable Container",
"description": "Support for bootable OS containers (bootc) and generating disk images",
"repository": "https://github.com/podman-desktop/extension-bootc",
"version": "1.15.0-next",
"icon": "icon.png",
"publisher": "redhat",
"private": true,
"engines": {
"node": ">=24.0.0",
"npm": ">=10.2.3"
},
"scripts": {
"build": "concurrently \"cd packages/frontend && npm run build\" \"cd packages/backend && npm run build\"",
"watch": "concurrently \"cd packages/frontend && npm run watch\" \"cd packages/backend && npm run watch\"",
"format:check": "biome format && prettier --cache --check \"**/*.md\"",
"format:clean": "rimraf node_modules/.cache/prettier",
"format:fix": "biome format --write && prettier --cache --write \"**/*.md\"",
"lint:check": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"svelte:check": "svelte-check",
"test:backend": "vitest run -r packages/backend --passWithNoTests --coverage",
"test:frontend": "vitest -c packages/frontend/vite.config.js run packages/frontend --passWithNoTests --coverage",
"test:shared": "vitest run -r packages/shared --passWithNoTests --coverage",
"test": "npm run test:backend && npm run test:shared && npm run test:frontend",
"test:e2e": "cd tests/playwright && npm run test:e2e",
"typecheck:shared": "tsc --noEmit --project packages/shared",
"typecheck:frontend": "tsc --noEmit --project packages/frontend",
"typecheck:backend": "tsc --noEmit --project packages/backend",
"typecheck": "npm run typecheck:shared && npm run typecheck:frontend && npm run typecheck:backend",
"prepare": "husky install"
},
"resolutions": {
"string-width": "^4.2.0",
"wrap-ansi": "^7.0.0"
},
"lint-staged": {
"*.{js,ts,tsx,svelte}": [
"eslint --cache --fix",
"biome format --write"
],
"*.md": "prettier --cache --write",
"*.{css,json}": "biome format --write"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/compat": "^2.0.4",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"@vitest/coverage-v8": "^4.0.10",
"autoprefixer": "^10.4.27",
"commitlint": "^20.5.0",
"concurrently": "^9.2.1",
"eslint": "^10.2.0",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-etc": "^2.0.3",
"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.2",
"eslint-plugin-svelte": "^3.17.0",
"eslint-plugin-unicorn": "^63.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.1",
"svelte-check": "^4.4.6",
"svelte-eslint-parser": "^1.6.0",
"typescript": "5.9.3",
"typescript-eslint": "^8.58.1",
"vite": "8.0.5",
"vitest": "^4.0.10"
},
"dependencies": {
"@xterm/addon-attach": "^0.12.0",
"js-yaml": "^4.1.1"
},
"pnpm": {
"overrides": {
"vite>esbuild": "^0.25.0"
},
"ignoredBuiltDependencies": [
"@biomejs/biome",
"@tailwindcss/oxide",
"cpu-features",
"esbuild",
"ssh2",
"svelte-preprocess",
"unrs-resolver"
]
},
"packageManager": "pnpm@10.15.0+sha512.486ebc259d3e999a4e8691ce03b5cac4a71cbeca39372a9b762cb500cfdf0873e2cb16abe3d951b1ee2cf012503f027b98b6584e4df22524e0c7450d9ec7aa7b"
}