-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.79 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.79 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
{
"name": "claude-task-runner",
"version": "1.0.0",
"description": "Automated Claude Code task runner that polls ClickUp and creates GitHub PRs",
"type": "module",
"packageManager": "pnpm@10.11.0",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "tsx --watch --env-file .env src/index.ts",
"dev:admin": "tsx --watch --env-file .env src/index.ts & cd web && pnpm dev & wait",
"build": "tsc -p tsconfig.build.json",
"start": "node --env-file .env dist/index.js",
"setup": "tsx scripts/setup.ts",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"test:run": "vitest --run",
"coverage": "vitest run --coverage",
"prepare": "husky"
},
"dependencies": {
"better-sqlite3": "^11.7.0",
"mammoth": "^1.11.0",
"p-throttle": "^6.2.0",
"pino": "^9.6.0",
"ws": "^8.18.0",
"zod": "^3.24.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,yml,yaml,md}": [
"prettier --write"
]
},
"devDependencies": {
"@clack/prompts": "^1.1.0",
"@eslint/js": "^9.39.1",
"@tsconfig/node22": "^22.0.5",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^24.10.2",
"@types/ws": "^8.18.0",
"@vitest/coverage-v8": "^4.0.15",
"@vitest/eslint-plugin": "^1.5.2",
"eslint": "^9.39.1",
"eslint-plugin-perfectionist": "^4.15.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.49.0",
"vitest": "^4.0.15"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
}
}