-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 2.19 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
{
"name": "dreb",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"packages/coding-agent/examples/extensions/with-deps",
"packages/coding-agent/examples/extensions/custom-provider-anthropic",
"packages/coding-agent/examples/extensions/custom-provider-gitlab-duo",
"packages/coding-agent/examples/extensions/custom-provider-qwen-cli"
],
"scripts": {
"clean": "npm run clean --workspaces",
"sync-version": "bash scripts/sync-version.sh",
"build": "cd packages/tui && npm run build && cd ../ai && npm run build && cd ../agent && npm run build && cd ../semantic-search && npm run build && cd ../coding-agent && npm run build && cd ../telegram && npm run build && cd ../dashboard && npm run build",
"dev": "concurrently --names \"ai,agent,coding-agent,tui\" --prefix-colors \"cyan,yellow,red,magenta\" \"cd packages/ai && npm run dev\" \"cd packages/agent && npm run dev\" \"cd packages/coding-agent && npm run dev\" \"cd packages/tui && npm run dev\"",
"check": "npm run verify-git-hooks && npm run verify-engines && biome check --write --error-on-warnings . && tsgo --noEmit",
"verify-git-hooks": "node scripts/verify-git-hooks.js",
"verify-workspace-links": "node scripts/verify-workspace-links.js",
"verify-engines": "node scripts/verify-engines.js",
"test": "npm run test --workspaces --if-present",
"coverage": "vitest --run --coverage --coverage.reporter=json-summary --coverage.reporter=text-summary",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "2.3.5",
"@types/node": "^22.10.5",
"@typescript/native-preview": "7.0.0-dev.20260120.1",
"@vitest/coverage-v8": "^4.1.8",
"concurrently": "^10.0.3",
"husky": "^9.1.7",
"shx": "^0.4.0",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
},
"author": "Drew Brereton",
"homepage": "https://entropist.ca",
"engines": {
"node": "22.x"
},
"packageManager": "npm@11.5.1",
"version": "2.45.4",
"dependencies": {
"@dreb/coding-agent": "*",
"@mariozechner/jiti": "^2.6.5",
"get-east-asian-width": "^1.4.0"
},
"overrides": {
"rimraf": "6.1.2",
"fast-xml-parser": "5.5.9",
"gaxios": {
"rimraf": "6.1.2"
}
}
}