origem 0.1.0 → 0.2.0

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 (3) hide show
  1. package/README.md +31 -25
  2. package/dist/index.js +275 -272
  3. package/package.json +12 -5
package/package.json CHANGED
@@ -1,12 +1,15 @@
1
1
  {
2
2
  "name": "origem",
3
- "version": "0.1.0",
4
- "description": "Conecta um repositório ao seu harness do Origem: autoriza no navegador, materializa CLAUDE.md e .claude/* em disco, e mantém tudo sincronizado.",
3
+ "version": "0.2.0",
4
+ "description": "Connect a repository to your Origem harness: authorise in the browser, write CLAUDE.md and .claude/* to disk, and keep them in sync.",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "origem": "dist/index.js"
8
8
  },
9
- "files": ["dist", "README.md"],
9
+ "files": [
10
+ "dist",
11
+ "README.md"
12
+ ],
10
13
  "scripts": {
11
14
  "typecheck": "tsc --noEmit",
12
15
  "build": "npm run typecheck && node build.mjs",
@@ -24,8 +27,12 @@
24
27
  "cli"
25
28
  ],
26
29
  "license": "MIT",
27
- "engines": { "node": ">=18" },
28
- "publishConfig": { "access": "public" },
30
+ "engines": {
31
+ "node": ">=18"
32
+ },
33
+ "publishConfig": {
34
+ "access": "public"
35
+ },
29
36
  "devDependencies": {
30
37
  "esbuild": "^0.24.0",
31
38
  "origem-adapters": "file:../origem-adapters",