@chrisleekr/agentsync 0.0.1 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +154 -29
- package/dist/cli.js +33964 -0
- package/package.json +69 -6
package/package.json
CHANGED
|
@@ -1,10 +1,73 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chrisleekr/agentsync",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Encrypted sync for AI agent configuration.",
|
|
5
|
+
"private": false,
|
|
6
|
+
"type": "module",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"homepage": "https://github.com/chrisleekr/agentsync#readme",
|
|
9
|
+
"bugs": {
|
|
10
|
+
"url": "https://github.com/chrisleekr/agentsync/issues"
|
|
11
|
+
},
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/chrisleekr/agentsync.git"
|
|
15
|
+
},
|
|
5
16
|
"keywords": [
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
|
|
17
|
+
"agentsync",
|
|
18
|
+
"bun",
|
|
19
|
+
"cli",
|
|
20
|
+
"encryption",
|
|
21
|
+
"age",
|
|
22
|
+
"claude",
|
|
23
|
+
"cursor",
|
|
24
|
+
"codex",
|
|
25
|
+
"copilot",
|
|
26
|
+
"vscode"
|
|
27
|
+
],
|
|
28
|
+
"bin": {
|
|
29
|
+
"agentsync": "dist/cli.js"
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist/cli.js",
|
|
33
|
+
"README.md",
|
|
34
|
+
"LICENSE"
|
|
35
|
+
],
|
|
36
|
+
"publishConfig": {
|
|
37
|
+
"access": "public"
|
|
38
|
+
},
|
|
39
|
+
"scripts": {
|
|
40
|
+
"build": "bun build --compile src/cli.ts --outfile dist/agentsync",
|
|
41
|
+
"build:package": "bun run scripts/build-package.ts",
|
|
42
|
+
"pack:dry-run": "bun run build:package && npm pack --dry-run --json --ignore-scripts",
|
|
43
|
+
"typecheck": "bunx tsc --noEmit",
|
|
44
|
+
"lint": "bunx biome ci .",
|
|
45
|
+
"lint:fix": "bunx biome check --write .",
|
|
46
|
+
"format": "bunx biome format .",
|
|
47
|
+
"format:fix": "bunx biome format --write .",
|
|
48
|
+
"test": "bun test",
|
|
49
|
+
"test:coverage": "bun test --coverage",
|
|
50
|
+
"check": "bun run typecheck && bun run lint && bun run test",
|
|
51
|
+
"prepack": "bun run build:package",
|
|
52
|
+
"prepare": "lefthook install"
|
|
53
|
+
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"@clack/prompts": "^1.2.0",
|
|
56
|
+
"@iarna/toml": "^2.2.5",
|
|
57
|
+
"age-encryption": "^0.3.0",
|
|
58
|
+
"citty": "^0.2.2",
|
|
59
|
+
"simple-git": "^3.27.0",
|
|
60
|
+
"tar": "^7.4.0",
|
|
61
|
+
"zod": "^4.0.0"
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"@biomejs/biome": "^2.0.0",
|
|
65
|
+
"@types/node": "^22.15.3",
|
|
66
|
+
"bun-types": "^1.3.9",
|
|
67
|
+
"lefthook": "^2.1.4",
|
|
68
|
+
"typescript": "^6.0.0"
|
|
69
|
+
},
|
|
70
|
+
"volta": {
|
|
71
|
+
"node": "22.14.0"
|
|
72
|
+
}
|
|
10
73
|
}
|