freestyle-sync 0.1.4 → 0.1.7
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/README.md +28 -2
- package/dist/src/main.js +515 -74
- package/package.json +18 -4
- package/dist/freestyle-sync.config.js +0 -35
- package/dist/main.js +0 -1319
- package/dist/plugins/agent-claude/src/index.js +0 -116
- package/dist/plugins/agent-codex/src/index.js +0 -68
- package/dist/plugins/agent-copilot/src/index.js +0 -529
- package/dist/plugins/auth-aws/src/index.js +0 -29
- package/dist/plugins/auth-azure/src/index.js +0 -29
- package/dist/plugins/auth-context.js +0 -213
- package/dist/plugins/auth-docker/src/index.js +0 -29
- package/dist/plugins/auth-env/src/index.js +0 -35
- package/dist/plugins/auth-gcloud/src/index.js +0 -29
- package/dist/plugins/auth-git/src/index.js +0 -50
- package/dist/plugins/auth-github-cli/src/index.js +0 -39
- package/dist/plugins/auth-npm/src/index.js +0 -38
- package/dist/plugins/auth-ssh/src/index.js +0 -42
- package/dist/plugins/auth-yarn/src/index.js +0 -24
- package/dist/plugins/node-npm/src/index.js +0 -388
- package/dist/plugins/npm-native-deps.js +0 -307
- package/dist/plugins/shell-history/src/index.js +0 -65
- package/dist/plugins/vscode/src/index.js +0 -160
- package/dist/src/pushvm.config.js +0 -36
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "freestyle-sync",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/src/main.js",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": "./dist/src/main.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
|
-
"dist"
|
|
10
|
+
"dist/src"
|
|
11
11
|
],
|
|
12
12
|
"workspaces": [
|
|
13
13
|
"plugins/*"
|
|
@@ -19,9 +19,11 @@
|
|
|
19
19
|
"node": ">=24"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
|
-
"build": "tsc -p tsconfig.json",
|
|
22
|
+
"build": "rm -rf dist plugins/*/dist && tsc -p tsconfig.json && node scripts/prepare-plugin-packages.mjs",
|
|
23
23
|
"check": "tsc --noEmit -p tsconfig.json",
|
|
24
24
|
"prepack": "npm run build",
|
|
25
|
+
"publish": "npm run check && npm run build && npm run publish:workspaces && npm publish",
|
|
26
|
+
"publish:workspaces": "node scripts/publish-workspaces.mjs",
|
|
25
27
|
"start": "node src/main.ts"
|
|
26
28
|
},
|
|
27
29
|
"dependencies": {
|
|
@@ -31,5 +33,17 @@
|
|
|
31
33
|
"devDependencies": {
|
|
32
34
|
"@types/node": "^24.10.1",
|
|
33
35
|
"typescript": "^5.9.3"
|
|
34
|
-
}
|
|
36
|
+
},
|
|
37
|
+
"description": "Sync your current directory, it's dependencies, and your agent context into a VM. VM snapshots ensure only changes are uploaded.",
|
|
38
|
+
"repository": {
|
|
39
|
+
"type": "git",
|
|
40
|
+
"url": "git+https://github.com/freestyle-sh/freestyle-sync.git"
|
|
41
|
+
},
|
|
42
|
+
"keywords": [],
|
|
43
|
+
"author": "",
|
|
44
|
+
"license": "ISC",
|
|
45
|
+
"bugs": {
|
|
46
|
+
"url": "https://github.com/freestyle-sh/freestyle-sync/issues"
|
|
47
|
+
},
|
|
48
|
+
"homepage": "https://github.com/freestyle-sh/freestyle-sync#readme"
|
|
35
49
|
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { claudeAgentPlugin } from "@freestyle-sync/agent-claude";
|
|
2
|
-
import { codexAgentPlugin } from "@freestyle-sync/agent-codex";
|
|
3
|
-
import { copilotAgentPlugin } from "@freestyle-sync/agent-copilot";
|
|
4
|
-
import { awsAuthPlugin } from "@freestyle-sync/auth-aws";
|
|
5
|
-
import { azureAuthPlugin } from "@freestyle-sync/auth-azure";
|
|
6
|
-
import { dockerAuthPlugin } from "@freestyle-sync/auth-docker";
|
|
7
|
-
import { envAuthPlugin } from "@freestyle-sync/auth-env";
|
|
8
|
-
import { gcloudAuthPlugin } from "@freestyle-sync/auth-gcloud";
|
|
9
|
-
import { gitAuthPlugin } from "@freestyle-sync/auth-git";
|
|
10
|
-
import { githubCliAuthPlugin } from "@freestyle-sync/auth-github-cli";
|
|
11
|
-
import { npmAuthPlugin } from "@freestyle-sync/auth-npm";
|
|
12
|
-
import { sshAuthPlugin } from "@freestyle-sync/auth-ssh";
|
|
13
|
-
import { yarnAuthPlugin } from "@freestyle-sync/auth-yarn";
|
|
14
|
-
import { nodeNpmPlugin } from "@freestyle-sync/node-npm";
|
|
15
|
-
import { shellHistoryPlugin } from "@freestyle-sync/shell-history";
|
|
16
|
-
import { defineConfig } from "./src/plugin-api.js";
|
|
17
|
-
export default defineConfig({
|
|
18
|
-
plugins: [
|
|
19
|
-
envAuthPlugin(),
|
|
20
|
-
gitAuthPlugin(),
|
|
21
|
-
sshAuthPlugin(),
|
|
22
|
-
githubCliAuthPlugin(),
|
|
23
|
-
npmAuthPlugin(),
|
|
24
|
-
yarnAuthPlugin(),
|
|
25
|
-
dockerAuthPlugin(),
|
|
26
|
-
awsAuthPlugin(),
|
|
27
|
-
azureAuthPlugin(),
|
|
28
|
-
gcloudAuthPlugin(),
|
|
29
|
-
nodeNpmPlugin(),
|
|
30
|
-
claudeAgentPlugin(),
|
|
31
|
-
codexAgentPlugin(),
|
|
32
|
-
copilotAgentPlugin(),
|
|
33
|
-
shellHistoryPlugin(),
|
|
34
|
-
],
|
|
35
|
-
});
|