-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.88 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
{
"name": "runhq",
"private": true,
"version": "1.1.0",
"description": "The universal local service orchestrator.",
"type": "module",
"license": "MIT",
"homepage": "https://runhq.dev",
"repository": {
"type": "git",
"url": "https://github.com/erdembas/runhq.git"
},
"packageManager": "pnpm@9.14.4",
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"scripts": {
"dev": "pnpm --filter @runhq/desktop dev",
"build": "pnpm --filter @runhq/desktop build",
"tauri:dev": "pnpm --filter @runhq/desktop tauri:dev",
"tauri:build": "pnpm --filter @runhq/desktop tauri:build",
"tauri:build:local": "pnpm --filter @runhq/desktop tauri:build:local",
"site:dev": "pnpm --filter @runhq/site dev",
"site:build": "pnpm --filter @runhq/site build && node scripts/site-postbuild.mjs",
"site:preview": "pnpm --filter @runhq/site start",
"lint": "pnpm -r lint",
"typecheck": "pnpm -r typecheck",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,css,html}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,css,html}\"",
"prepare": "husky",
"lint:workflows": "actionlint -color"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix --max-warnings=0 --no-warn-ignored"
],
"*.{json,md,css,html}": [
"prettier --write"
],
"*.rs": [
"rustfmt --edition 2021"
]
},
"devDependencies": {
"@commitlint/cli": "^19",
"@commitlint/config-conventional": "^19",
"@eslint/js": "^9.39.5",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"eslint": "^9.15.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.5.2",
"husky": "^9",
"lint-staged": "^15",
"prettier": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.7.3",
"typescript": "^5.7.2"
}
}