@contextgit/api 0.2.0 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +17 -0
  2. package/package.json +3 -3
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # @contextgit/api
2
+
3
+ Express REST API server for [ContextGit](https://www.npmjs.com/package/contextgit), enabling cross-machine context sync.
4
+
5
+ This is an internal workspace package. If you want to use ContextGit, install the main package:
6
+
7
+ ```bash
8
+ npm install -g contextgit
9
+ contextgit init
10
+ contextgit serve # starts the API server
11
+ ```
12
+
13
+ See the main package — [`contextgit`](https://www.npmjs.com/package/contextgit) — or the project on GitHub: [MendeTr/contextgit](https://github.com/MendeTr/contextgit).
14
+
15
+ ## License
16
+
17
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contextgit/api",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "type": "module",
5
5
  "main": "./dist/server.js",
6
6
  "exports": {
@@ -15,8 +15,8 @@
15
15
  "typecheck": "tsc --noEmit"
16
16
  },
17
17
  "dependencies": {
18
- "@contextgit/core": "0.2.0",
19
- "@contextgit/store": "0.2.0",
18
+ "@contextgit/core": "0.2.1",
19
+ "@contextgit/store": "0.2.1",
20
20
  "express": "^4.19.0",
21
21
  "simple-git": "^3.27.0"
22
22
  },