-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.67 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.67 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
{
"name": "agentblame",
"displayName": "Agent Blame",
"description": "Track AI-generated vs human-written code. Provides git notes storage, CLI, and GitHub PR attribution.",
"version": "3.1.9",
"private": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/mesa-dot-dev/agentblame"
},
"workspaces": [
"packages/cli",
"packages/extension",
"packages/chrome",
"packages/firefox"
],
"scripts": {
"build": "bun run build:cli && bun run build:chrome && bun run build:firefox",
"build:cli": "cd packages/cli && bun run build",
"build:chrome": "cd packages/chrome && bun run build",
"build:firefox": "cd packages/firefox && bun run build",
"clean": "rm -rf packages/*/dist packages/*/out",
"test": "bun test",
"lint": "biome lint packages/",
"lint:fix": "biome lint --write packages/",
"fmt": "biome format --write packages/",
"fmt:check": "biome format packages/",
"ab": "bun run packages/cli/src/index.ts",
"ab:blame": "bun run packages/cli/src/index.ts blame",
"ab:sync": "bun run packages/cli/src/index.ts sync",
"ab:status": "bun run packages/cli/src/index.ts status",
"ab:post-merge": "bun run packages/cli/src/post-merge.ts",
"ab:capture": "bun run packages/cli/src/capture.ts",
"cleanup": "bun run packages/cli/src/cleanup.ts",
"logs:clear": "rm -f ~/.agentblame/logs/*.log && echo 'Logs cleared.'"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@types/chrome": "^0.0.287",
"@types/diff": "^8.0.0",
"@types/node": "^20.11.30",
"esbuild": "^0.24.0",
"typescript": "^5.5.4"
},
"dependencies": {
"diff": "^8.0.2"
}
}