-
-
Notifications
You must be signed in to change notification settings - Fork 325
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.71 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 3.71 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
{
"name": "freelens-monorepo",
"private": true,
"homepage": "https://freelens.app",
"bugs": {
"url": "https://github.com/freelensapp/freelens/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freelensapp/freelens.git"
},
"license": "MIT",
"author": {
"name": "Freelens Authors",
"email": "freelens@freelens.app"
},
"workspaces": [
"packages/**/*",
"freelens"
],
"scripts": {
"asar": "pnpm dlx @electron/asar@4.2.1",
"biome": "pnpm dlx @biomejs/biome@2.5.4",
"biome:check": "pnpm biome check",
"biome:fix": "pnpm biome check --fix",
"biome:migrate": "pnpm biome migrate --write",
"build": "turbo run build --filter=!freelens -- && turbo run build --filter=freelens --",
"build:packages": "turbo run build --filter=!freelens --",
"postbuild": "turbo run build:resources --",
"build:app": "turbo run build:app --",
"build:app:dir": "pnpm build:app dir",
"build:core": "cd packages/core && pnpm build",
"build:dev": "NODE_ENV=development turbo run build:dev --",
"postbuild:dev": "turbo run build:resources --",
"build:di": "node scripts/generate-explicit-di-registration.mjs",
"build:freelens": "cd freelens && pnpm build",
"build:resources": "turbo run build:resources --",
"bump-version": "pnpm version --no-commit-hooks --no-git-tag-version --workspaces --no-workspaces-update",
"clean": "pnpm run clean:dist && pnpm purge",
"clean:cache": "pnpm dlx rimraf@6.1.3 .cache",
"clean:dist": "pnpm dlx rimraf@6.1.3 .rimraf-dlx-warmup && pnpm -r run clean:dist",
"clean:turbo": "pnpm dlx rimraf@6.1.3 .turbo",
"compute-versions": "pnpm -r compute-versions",
"update-binaries-lock": "pnpm -r update-binaries-lock",
"update-kubectl-checksums": "pnpm -r update-kubectl-checksums",
"dev": "turbo run dev --parallel --",
"fmt": "pnpm trunk fmt",
"knip": "pnpm dlx knip@6.24.0 --dependencies --no-gitignore --no-config-hints",
"knip:check": "pnpm \"/^knip:(development|production)\\$/\"",
"knip:development": "pnpm knip",
"knip:production": "pnpm knip --production --strict",
"lint": "pnpm trunk check",
"lint:fix": "pnpm trunk check --fix",
"prettier": "pnpm dlx prettier@3.8.5",
"prettier:check": "pnpm prettier --check .",
"prettier:fix": "pnpm prettier --write .",
"start": "cd freelens && pnpm start",
"start:os": "pnpm dlx run-script-os@1.1.6 --",
"start:os:darwin": "open --stdout $(tty) --stderr $(tty) freelens:",
"start:os:linux": "xdg-open freelens:",
"start:os:win32": "powershell -NoProfile -Command \"Start-Process freelens:\"",
"test:integration": "cd freelens && pnpm test:integration",
"test:unit": "TZ=UTC vitest run -c vitest.config.ts",
"test:unit:core": "TZ=UTC vitest run -c vitest.config.ts --project @freelensapp/core",
"test:unit:core:updatesnapshot": "TZ=UTC vitest run -c vitest.config.ts --project @freelensapp/core -u",
"test:unit:updatesnapshot": "TZ=UTC vitest run -c vitest.config.ts -u",
"type:check": "tsc -p tsconfig.typecheck.json",
"trunk": "pnpm dlx @trunkio/launcher@1.3.4",
"trunk:check": "pnpm trunk check",
"trunk:check:all": "pnpm trunk check --all",
"trunk:fix": "pnpm trunk check --fix",
"trunk:fix:all": "pnpm trunk check --fix --all"
},
"devDependencies": {
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"jsdom": "catalog:",
"pnpm": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"packageManager": "pnpm@11.18.0+sha512.33d83c77da82f49fba836925c6f1b841181ec3132b670639bd012f7075f5c7cf634c5f870147c19aae7478fac01df09d8892e880454896edd23ee9b33757563c",
"engines": {
"node": ">=24.0.0"
}
}