getvalt 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 +7 -0
  2. package/index.js +3 -0
  3. package/package.json +21 -0
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # getvalt
2
+
3
+ Reserved by Valtorix Studios. The official package is 'valtorix' (Valt by Valtorix Studios).
4
+
5
+ This is a defensive name registration by **Valtorix Studios** (see our
6
+ typosquat-protection policy). The official, maintained package is
7
+ [`valtorix`](https://www.npmjs.com/package/valtorix).
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ console.log(`This name is reserved by Valtorix Studios to protect users from typosquatting.
3
+ The official package is 'valtorix': npx valtorix`);
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "getvalt",
3
+ "version": "0.0.1",
4
+ "description": "Reserved by Valtorix Studios. The official package is \u0027valtorix\u0027 (Valt by Valtorix Studios).",
5
+ "bin": {
6
+ "getvalt": "./index.js"
7
+ },
8
+ "license": "UNLICENSED",
9
+ "author": "Valtorix Studios",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/valtorix-studios/platform"
13
+ },
14
+ "keywords": [
15
+ "valt",
16
+ "valtorix",
17
+ "agent-skills",
18
+ "mcp",
19
+ "verification"
20
+ ]
21
+ }