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.
- package/README.md +31 -25
- package/dist/index.js +275 -272
- package/package.json +12 -5
package/package.json
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "origem",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
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": [
|
|
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": {
|
|
28
|
-
|
|
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",
|