prism0x2a 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 +12 -0
  2. package/index.js +4 -0
  3. package/package.json +11 -0
package/README.md ADDED
@@ -0,0 +1,12 @@
1
+ # prism0x2A
2
+
3
+ > The answer to your codebase.
4
+
5
+ **Status:** Reserved — real release coming with `0.2.0`.
6
+
7
+ `prism0x2A` is a local-first code intelligence dashboard.
8
+ Powered by [prismlens](https://github.com/dadenjo/prismlens).
9
+
10
+ Why `0x2A`? It's hex for 42.
11
+
12
+ — More at https://github.com/prism0x2A
package/index.js ADDED
@@ -0,0 +1,4 @@
1
+ // prism0x2A — placeholder release. Real product ships in 0.2.0.
2
+ // See: https://github.com/prism0x2A
3
+ console.log("prism0x2A — 0x2A = 42. The answer to your codebase.");
4
+ console.log("This is a reservation stub. Real release coming soon.");
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "prism0x2a",
3
+ "version": "0.0.1",
4
+ "description": "prism0x2A — The answer to your codebase. Reserved package. Real release coming with v0.2.0.",
5
+ "main": "index.js",
6
+ "license": "UNLICENSED",
7
+ "private": false,
8
+ "homepage": "https://github.com/prism0x2A",
9
+ "keywords": ["code-intelligence", "dashboard", "static-analysis", "ts", "react"],
10
+ "author": "dadenjo"
11
+ }