@grimoire-rs/indexer 0.1.0 → 0.1.2

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 +16 -2
  2. package/package.json +10 -2
package/README.md CHANGED
@@ -40,8 +40,22 @@ export default defineConfig({
40
40
 
41
41
  ## Status
42
42
 
43
- Skeleton subcommands and the Astro integration are under active
44
- development.
43
+ Pre-1.0. All three subcommands work and are covered by tests, but the
44
+ end-to-end loop — announce, gate, auto-merge, publish — has not yet been
45
+ proven against a live index, so treat it as early.
46
+
47
+ Two things are frozen and safe to build on: the published URL layout
48
+ (`/p/<namespace>/<name>/` and `/all.json`) and the per-record `schema`
49
+ field. Everything else may still move.
50
+
51
+ Theming is CSS custom properties, defined for both light and dark. There
52
+ is deliberately no component-override API yet — publishing one would
53
+ freeze a prop contract per slot, and that is not a promise worth making
54
+ this early.
55
+
56
+ > **Do not use `0.1.0`.** npm silently stripped its `bin` entry at publish
57
+ > time, so that version installs without an executable. Use `0.1.1` or
58
+ > later.
45
59
 
46
60
  ## License
47
61
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grimoire-rs/indexer",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "CLI + Astro integration for running your own grim package index",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -8,7 +8,7 @@
8
8
  "node": ">=22.14.0"
9
9
  },
10
10
  "bin": {
11
- "grim-indexer": "./dist/cli/index.js"
11
+ "grim-indexer": "dist/cli/index.js"
12
12
  },
13
13
  "files": [
14
14
  "dist",
@@ -46,5 +46,13 @@
46
46
  "astro": "^7.1.4",
47
47
  "commander": "^15.0.0",
48
48
  "preact": "^10.29.7"
49
+ },
50
+ "repository": {
51
+ "type": "git",
52
+ "url": "git+https://github.com/grimoire-rs/indexer.git"
53
+ },
54
+ "homepage": "https://github.com/grimoire-rs/indexer#readme",
55
+ "bugs": {
56
+ "url": "https://github.com/grimoire-rs/indexer/issues"
49
57
  }
50
58
  }