prooflane-receipts 0.0.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 (3) hide show
  1. package/README.md +24 -0
  2. package/index.mjs +1 -0
  3. package/package.json +13 -0
package/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # `prooflane-receipts`
2
+
3
+ **Reserved, not released.** Held for the [prooflane](https://www.npmjs.com/package/prooflane)
4
+ harness: a stack-agnostic verify lane that derives *done* from evidence rather than
5
+ taking an agent's word for it.
6
+
7
+ Standalone receipt reader and validator — checks a receipt from the repo alone, offline.
8
+
9
+ Nothing useful installs from here yet. What works today:
10
+
11
+ ```bash
12
+ npx create-cmp-cli --help
13
+ ```
14
+
15
+ The names are claimed ahead of the code deliberately. The harness is being split
16
+ out of `create-cmp-cli`, and the CLI, the receipt format and every stack profile
17
+ have to agree on one name — renaming a published evidence format twice is worse
18
+ than reserving the name once. This project uses unscoped `prooflane-*` names
19
+ because the `@prooflane` organisation was unavailable.
20
+
21
+ - The plan: [PACKAGE-SPLIT.md](https://github.com/kvdm-co-pilot/create-cmp/blob/main/docs/proposals/PACKAGE-SPLIT.md)
22
+ - The goals: [NORTH-STAR.md](https://github.com/kvdm-co-pilot/create-cmp/blob/main/docs/NORTH-STAR.md)
23
+
24
+ MIT.
package/index.mjs ADDED
@@ -0,0 +1 @@
1
+ export const reserved = true;
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "prooflane-receipts",
3
+ "version": "0.0.1",
4
+ "description": "Standalone receipt reader and validator — checks a receipt from the repo alone, offline.",
5
+ "license": "MIT",
6
+ "repository": { "type": "git", "url": "git+https://github.com/kvdm-co-pilot/create-cmp.git", "directory": "packages/aliases/prooflane-receipts" },
7
+ "homepage": "https://github.com/kvdm-co-pilot/create-cmp/blob/main/docs/proposals/PACKAGE-SPLIT.md",
8
+ "keywords": ["prooflane", "verification", "evidence", "receipts", "agents"],
9
+ "type": "module",
10
+ "main": "index.mjs",
11
+ "files": ["README.md", "index.mjs"],
12
+ "engines": { "node": ">=20.19.0" }
13
+ }