-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.94 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.94 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
{
"name": "@chrisleekr/agentsync",
"version": "0.1.5",
"description": "A CLI to snapshot, encrypt, and sync AI agent configs — Claude, Cursor, Codex, Copilot, VS Code — across machines via a Git vault.",
"private": false,
"type": "module",
"license": "MIT",
"homepage": "https://github.com/chrisleekr/agentsync#readme",
"bugs": {
"url": "https://github.com/chrisleekr/agentsync/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrisleekr/agentsync.git"
},
"keywords": [
"agentsync",
"bun",
"cli",
"encryption",
"age",
"claude",
"cursor",
"codex",
"copilot",
"vscode"
],
"bin": {
"agentsync": "dist/cli.js"
},
"files": [
"dist/cli.js",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "bun build --compile src/cli.ts --outfile dist/agentsync",
"build:package": "bun run scripts/build-package.ts",
"pack:dry-run": "bun run build:package && npm pack --dry-run --json --ignore-scripts",
"typecheck": "bunx tsc --noEmit",
"lint": "bunx biome ci .",
"lint:fix": "bunx biome check --write .",
"format": "bunx biome format .",
"format:fix": "bunx biome format --write .",
"test": "bun test",
"test:coverage": "bun test --coverage",
"check": "bun run typecheck && bun run lint && bun run test",
"check:act": "act -W .github/workflows/ci.yml",
"prepack": "bun run build:package",
"prepare": "lefthook install"
},
"dependencies": {
"@clack/prompts": "^1.2.0",
"@iarna/toml": "^2.2.5",
"age-encryption": "^0.3.0",
"citty": "^0.2.2",
"picocolors": "^1.1.1",
"simple-git": "^3.27.0",
"tar": "^7.4.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@types/node": "^22.15.3",
"bun-types": "1.3.9",
"lefthook": "^2.1.4",
"typescript": "^6.0.0"
},
"volta": {
"node": "22.14.0"
}
}