-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.32 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.32 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
101
102
103
104
105
106
107
108
109
{
"name": "@clipboard-health/groundcrew",
"version": "4.50.7",
"description": "Linear-driven orchestrator that launches AI coding agents in git worktrees, with workspace lifecycle and usage tracking.",
"keywords": [
"agent",
"ai",
"claude",
"codex",
"linear",
"orchestrator",
"worktree"
],
"bugs": "https://github.com/ClipboardHealth/groundcrew/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ClipboardHealth/groundcrew.git"
},
"bin": {
"crew": "./bin/run.js",
"crew-clearance-ensure": "./bin/crewClearanceEnsure.js"
},
"files": [
"README.md",
"bin",
"clearance-allow-hosts",
"crew.config.example.ts",
"dist",
"docs",
"static",
"task-sources"
],
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"architecture:check": "depcruise --config config/dependencyCruiser.cjs src bin crew.config.example.ts vitest.config.ts",
"build": "tsgo --build --force tsconfig.lib.json",
"build:dev": "tsgo --build tsconfig.lib.json",
"cpd": "jscpd --config config/jscpd.json .",
"crew": "node --run build:dev && node ./bin/run.js",
"crew:op": "node --run build:dev && op run --env-file \"${XDG_CONFIG_HOME:-$HOME/.config}/groundcrew/op.env\" -- node ./bin/run.js",
"format": "oxfmt --config config/oxfmt.json",
"format:check": "oxfmt --config config/oxfmt.json --check",
"hook:pre-commit": "lint-staged --config config/lintStaged.config.js",
"hook:pre-push": "node --run verify",
"knip": "knip --config config/knip.json",
"lint": "oxlint --config config/oxlint.config.ts --deny-warnings --ignore-pattern 'v2/**'",
"markdown:lint": "markdownlint-cli2 --config config/markdownlint-cli2.jsonc",
"prepack": "node --run build",
"prepare": "husky",
"sync-ai-rules": "node ./node_modules/@clipboard-health/ai-rules/scripts/sync.js common",
"syncpack:lint": "syncpack lint --config config/syncpack.config.ts",
"test": "vitest run --coverage",
"verify": "node scripts/verifyAll.mts"
},
"dependencies": {
"@clipboard-health/clearance": "1.8.3",
"@linear/sdk": "90.0.0",
"agent-trust": "1.0.0",
"cosmiconfig": "10.0.0",
"tslib": "2.8.1",
"zod": "4.4.3"
},
"devDependencies": {
"@clipboard-health/ai-rules": "2.46.2",
"@clipboard-health/oxlint-config": "1.14.3",
"@nx/js": "23.1.0",
"@tsconfig/node24": "24.0.5",
"@tsconfig/strictest": "2.0.8",
"@types/node": "26.2.0",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"@vitest/coverage-v8": "4.1.10",
"dependency-cruiser": "18.2.0",
"husky": "9.1.7",
"jscpd": "5.0.15",
"knip": "6.32.2",
"lint-staged": "17.3.0",
"markdownlint-cli2": "0.23.2",
"nx": "23.1.0",
"oxfmt": "0.63.0",
"oxlint": "1.78.0",
"oxlint-tsgolint": "7.0.2001",
"syncpack": "15.3.3",
"vite": "8.2.1",
"vitest": "4.1.10"
},
"engines": {
"node": "24.14.1",
"npm": "~11.11.0"
},
"nx": {
"name": "groundcrew"
}
}