just-git 1.1.6 → 1.1.8
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 +1 -0
- package/package.json +15 -4
package/README.md
CHANGED
|
@@ -319,6 +319,7 @@ Runnable examples in [`examples/`](examples/):
|
|
|
319
319
|
| [`multi-agent.ts`](examples/multi-agent.ts) | Cross-VFS collaboration with clone/push/pull between isolated agents |
|
|
320
320
|
| [`server.ts`](examples/server.ts) | VFS-backed Smart HTTP server with virtual client clone and push |
|
|
321
321
|
| [`sqlite-server.ts`](examples/sqlite-server.ts) | SQLite-backed server with auto-creating repos, works with real `git` |
|
|
322
|
+
| [`node-server.mjs`](examples/node-server.mjs) | Node.js HTTP server with SQLite + auth via `better-sqlite3` |
|
|
322
323
|
| [`platform-server.ts`](examples/platform-server.ts) | GitHub-like PR workflows: create, merge, close via REST API |
|
|
323
324
|
| [`agent-remote-workflow.ts`](examples/agent-remote-workflow.ts) | Clone from GitHub, work in sandbox, push back (requires token) |
|
|
324
325
|
|
package/package.json
CHANGED
|
@@ -1,14 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "just-git",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.8",
|
|
4
4
|
"description": "Pure TypeScript git implementation: virtual filesystem client and embeddable server.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent",
|
|
7
|
+
"embedded",
|
|
7
8
|
"git",
|
|
9
|
+
"git-server",
|
|
10
|
+
"in-memory",
|
|
11
|
+
"isomorphic",
|
|
8
12
|
"just-bash",
|
|
13
|
+
"multi-agent",
|
|
9
14
|
"sandbox",
|
|
10
|
-
"
|
|
11
|
-
"
|
|
15
|
+
"smart-http",
|
|
16
|
+
"typescript",
|
|
17
|
+
"virtual-filesystem"
|
|
12
18
|
],
|
|
13
19
|
"homepage": "https://github.com/blindmansion/just-git",
|
|
14
20
|
"license": "MIT",
|
|
@@ -47,9 +53,14 @@
|
|
|
47
53
|
"sandbox": "bun sandbox.ts",
|
|
48
54
|
"knip": "knip",
|
|
49
55
|
"knip:prod": "knip --config knip-production.json",
|
|
50
|
-
"gen-docs": "bun run scripts/gen-lib-reference.ts > FILE_REFERENCE.md && bun run scripts/gen-cli-help.ts > CLI.md"
|
|
56
|
+
"gen-docs": "bun run scripts/gen-lib-reference.ts > FILE_REFERENCE.md && bun run scripts/gen-cli-help.ts > CLI.md",
|
|
57
|
+
"changeset": "changeset",
|
|
58
|
+
"version-packages": "changeset version",
|
|
59
|
+
"release": "bun run build && changeset publish"
|
|
51
60
|
},
|
|
52
61
|
"devDependencies": {
|
|
62
|
+
"@changesets/changelog-github": "^0.6.0",
|
|
63
|
+
"@changesets/cli": "^2.30.0",
|
|
53
64
|
"@types/bun": "latest",
|
|
54
65
|
"@types/node": "^25.4.0",
|
|
55
66
|
"@types/pg": "^8.18.0",
|