-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.59 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
{
"name": "agentlocks",
"version": "0.9.3",
"description": "Agent-native advisory file locks that let multiple AI coding agents share one Git worktree without clobbering each other.",
"license": "MIT",
"author": "Djordje Simovic",
"type": "module",
"packageManager": "bun@1.3.13",
"homepage": "https://github.com/simke9445/agentlocks#readme",
"bugs": {
"url": "https://github.com/simke9445/agentlocks/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simke9445/agentlocks.git"
},
"keywords": [
"advisory-lock",
"file-lock",
"multi-agent",
"ai-agents",
"coding-agent",
"claude-code",
"codex",
"agent-native",
"git",
"worktree",
"concurrency",
"cli",
"typescript",
"bun"
],
"publishConfig": {
"access": "public"
},
"bin": {
"agentlocks": "dist/agentlocks.mjs"
},
"files": [
"dist/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "bun run build:bundle",
"build:bundle": "bun scripts/build-bundle.mjs",
"prepack": "bun run build",
"agentlocks": "bun run bin/agentlocks.ts",
"start": "bun run bin/agentlocks.ts",
"doctor": "bun run bin/agentlocks.ts doctor",
"format": "biome format --write .",
"lint": "biome check .",
"typecheck": "tsc --noEmit",
"test": "bun test",
"check": "bun run test && bun run typecheck && bun run lint"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@types/bun": "1.3.14",
"commander": "14.0.3",
"typescript": "6.0.3"
},
"engines": {
"node": ">=22.18"
}
}