nativectx 0.1.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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +27 -0
  3. package/bin.mjs +8 -0
  4. package/package.json +36 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025-2026 Alex Amayo
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,27 @@
1
+ # nativectx
2
+
3
+ CLI entry point for **[NativeCtx UI](https://nativectx.com)**.
4
+
5
+ This package exists so the CLI can be run without typing the scope:
6
+
7
+ ```bash
8
+ npx nativectx skills # install Claude Skills into .claude/skills/
9
+ npx nativectx mcp # start the MCP server
10
+ npx nativectx migrate # upgrade a project from zero-to-app
11
+ ```
12
+
13
+ It contains no logic of its own — it depends on
14
+ [`@nativectx/ui`](https://www.npmjs.com/package/@nativectx/ui) and forwards to
15
+ the same CLI, so `npx @nativectx/ui <command>` is always equivalent.
16
+
17
+ **Installing the component library?** Use `@nativectx/ui`, not this package:
18
+
19
+ ```bash
20
+ npx expo install @nativectx/ui
21
+ ```
22
+
23
+ Documentation, components and theming: **[nativectx.com](https://nativectx.com)**
24
+
25
+ ## License
26
+
27
+ MIT
package/bin.mjs ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env node
2
+ // Thin alias so `npx nativectx <command>` works without typing the scope.
3
+ //
4
+ // The real CLI reads process.argv directly and runs on import, so there is
5
+ // nothing to forward — argv is already correct when this file is the entry
6
+ // point. Keeping it an import (rather than spawning a child) means signals,
7
+ // exit codes and stdio pass through untouched.
8
+ import '@nativectx/ui/cli';
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "nativectx",
3
+ "version": "0.1.0",
4
+ "description": "CLI entry point for NativeCtx UI. Installs @nativectx/ui and forwards to its CLI.",
5
+ "license": "MIT",
6
+ "author": "Alex Amayo",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/nativectx/ui.git"
10
+ },
11
+ "homepage": "https://nativectx.com",
12
+ "keywords": [
13
+ "nativectx",
14
+ "react-native",
15
+ "expo",
16
+ "cli",
17
+ "mcp"
18
+ ],
19
+ "type": "module",
20
+ "bin": {
21
+ "nativectx": "./bin.mjs"
22
+ },
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
26
+ "files": [
27
+ "bin.mjs",
28
+ "package.json",
29
+ "README.md",
30
+ "LICENSE"
31
+ ],
32
+ "dependencies": {
33
+ "@nativectx/ui": "^0.1.0"
34
+ },
35
+ "scripts": {}
36
+ }